aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Henderson <rth@cygnus.com>2000-05-20 17:18:24 -0700
committerRichard Henderson <rth@gcc.gnu.org>2000-05-20 17:18:24 -0700
commit1e139755845fe79a2fe6b83b099b6a34864060ce (patch)
tree9a59c6309c884598bfd5748cc2478c7de19bc1a4
parent1c02a3d9640482c8e296f4f939381fde52fd9b18 (diff)
downloadgcc-1e139755845fe79a2fe6b83b099b6a34864060ce.zip
gcc-1e139755845fe79a2fe6b83b099b6a34864060ce.tar.gz
gcc-1e139755845fe79a2fe6b83b099b6a34864060ce.tar.bz2
* lib/f-torture.exp (TORTURE_OPTIONS): Add "-O3 -g" and "-O3 -fssa".
From-SVN: r34065
-rw-r--r--gcc/testsuite/ChangeLog4
-rw-r--r--gcc/testsuite/lib/f-torture.exp3
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index c3449bb..7f9a767 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,7 @@
+2000-05-20 Richard Henderson <rth@cygnus.com>
+
+ * lib/f-torture.exp (TORTURE_OPTIONS): Add "-O3 -g" and "-O3 -fssa".
+
2000-05-20 Andreas Jaeger <aj@suse.de>
* gcc.c-torture/execute/20000519-1.c (main): Fixed return value of
diff --git a/gcc/testsuite/lib/f-torture.exp b/gcc/testsuite/lib/f-torture.exp
index 6596b6f..48f8da2 100644
--- a/gcc/testsuite/lib/f-torture.exp
+++ b/gcc/testsuite/lib/f-torture.exp
@@ -23,12 +23,13 @@
# TORTURE_OPTIONS="{ { list1 } ... { listN } }"
if ![info exists TORTURE_OPTIONS] {
- # FIXME: We should test -g at least once.
set TORTURE_OPTIONS [list \
{ -O0 } { -O1 } { -O2 } \
{ -O2 -fomit-frame-pointer -finline-functions } \
{ -O2 -fomit-frame-pointer -finline-functions -funroll-loops } \
{ -O2 -fomit-frame-pointer -finline-functions -funroll-all-loops } \
+ { -O3 -g } \
+ { -O3 -fssa } \
{ -Os }]
}