* lib/f-torture.exp (TORTURE_OPTIONS): Add "-O3 -g" and "-O3 -fssa".

From-SVN: r34065
This commit is contained in:
Richard Henderson 2000-05-20 17:18:24 -07:00 committed by Richard Henderson
parent 1c02a3d964
commit 1e13975584
2 changed files with 6 additions and 1 deletions

View File

@ -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

View File

@ -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 }]
}