aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2019-02-06 10:14:46 +0000
committerPeter Maydell <peter.maydell@linaro.org>2019-02-08 13:12:32 +0000
commitc866c74c09de01100be3a2cd33a84f687987e651 (patch)
tree8d142290ea1f68c89a4f4fb47bf1ae81816b6cf8
parent0071c28fab9b55781353cd4bfc8e016efd014a96 (diff)
risugen: Default to sve off
We had an --sve switch, which would also enable sve, but no way to turn sve off. Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20190206101446.6898-3-richard.henderson@linaro.org Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
-rwxr-xr-xrisugen3
1 files changed, 2 insertions, 1 deletions
diff --git a/risugen b/risugen
index de3f5ea..e690b18 100755
--- a/risugen
+++ b/risugen
@@ -308,6 +308,7 @@ Valid options:
a general set you have excluded.
--no-fp : disable floating point: no fp init, randomization etc.
Useful to test before support for FP is available.
+ --sve : enable sve floating point
--be : generate instructions in Big-Endian byte order (ppc64 only).
--help : print this message
EOT
@@ -319,7 +320,7 @@ sub main()
my $condprob = 0;
my $fpscr = 0;
my $fp_enabled = 1;
- my $sve_enabled = 1;
+ my $sve_enabled = 0;
my $big_endian = 0;
my ($infile, $outfile);