diff options
author | Michael Meissner <meissner@cygnus.com> | 1998-05-05 16:24:01 +0000 |
---|---|---|
committer | Michael Meissner <meissner@gcc.gnu.org> | 1998-05-05 16:24:01 +0000 |
commit | a2b1989b766a0a928209774374c7caaebac64b13 (patch) | |
tree | 4fa80c035a08e7c7c6adfde4221b381183496870 /gcc | |
parent | c6a9dea8d57d88650bec17746306c3cea57f13ed (diff) | |
download | gcc-a2b1989b766a0a928209774374c7caaebac64b13.zip gcc-a2b1989b766a0a928209774374c7caaebac64b13.tar.gz gcc-a2b1989b766a0a928209774374c7caaebac64b13.tar.bz2 |
Add -Os to torture options
From-SVN: r19546
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/lib/c-torture.exp | 2 | ||||
-rw-r--r-- | gcc/testsuite/lib/f-torture.exp | 3 |
3 files changed, 8 insertions, 2 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 815109c..a572090 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +Tue May 5 19:20:13 1998 Michael Meissner <meissner@cygnus.com> + + * lib/c-torture.exp (TORTURE_OPTIONS): Add -Os to options. + * lib/f-torture.exp (TORTURE_OPTIONS): Ditto. + 1998-04-29 Dave Love <d.love@dl.ac.uk> * g77.f-torture/compile/980419-1.f: Removed since doesn't compile. diff --git a/gcc/testsuite/lib/c-torture.exp b/gcc/testsuite/lib/c-torture.exp index ce6ce3c..e7d5597 100644 --- a/gcc/testsuite/lib/c-torture.exp +++ b/gcc/testsuite/lib/c-torture.exp @@ -32,7 +32,7 @@ if ![info exists TORTURE_OPTIONS] { { -O2 -fomit-frame-pointer -finline-functions } \ { -O2 -fomit-frame-pointer -finline-functions -funroll-loops } \ { -O2 -fomit-frame-pointer -finline-functions -funroll-all-loops } \ - { -O2 -g } ] + { -O2 -g } { -Os } ] } diff --git a/gcc/testsuite/lib/f-torture.exp b/gcc/testsuite/lib/f-torture.exp index 43f6e0f..465b932 100644 --- a/gcc/testsuite/lib/f-torture.exp +++ b/gcc/testsuite/lib/f-torture.exp @@ -28,7 +28,8 @@ if ![info exists TORTURE_OPTIONS] { { -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 }] + { -O2 -fomit-frame-pointer -finline-functions -funroll-all-loops } \ + { -Os }] } |