diff options
| author | bje <bje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-01-23 03:19:30 +0000 |
|---|---|---|
| committer | bje <bje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-01-23 03:19:30 +0000 |
| commit | ba7564bd3a42686bb50d86bfc19430d396ce59de (patch) | |
| tree | 460cdbb2024cfebce97743cbe0ba07e5fa2d4da8 | |
| parent | 1a8cc275ad62784631fe106f75c96dd8a753d5e1 (diff) | |
| download | ppe42-gcc-ba7564bd3a42686bb50d86bfc19430d396ce59de.tar.gz ppe42-gcc-ba7564bd3a42686bb50d86bfc19430d396ce59de.zip | |
* gcc.misc-tests/dectest.exp (TORTURE_OPTIONS): Include -Os.
Remove target conditional torture options for i?86 and x86_64
GNU/Linux.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@110105 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/testsuite/ChangeLog | 6 | ||||
| -rw-r--r-- | gcc/testsuite/gcc.misc-tests/dectest.exp | 8 |
2 files changed, 7 insertions, 7 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 57945e8ad34..271642d2a56 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2006-01-23 Ben Elliston <bje@au.ibm.com> + + * gcc.misc-tests/dectest.exp (TORTURE_OPTIONS): Include -Os. + Remove target conditional torture options for i?86 and x86_64 + GNU/Linux. + 2006-01-22 Gabriel Dos Reis <gdr@integrable-solutions.net> PR c++/10891 diff --git a/gcc/testsuite/gcc.misc-tests/dectest.exp b/gcc/testsuite/gcc.misc-tests/dectest.exp index 15b6c24efa7..9b1a726c056 100644 --- a/gcc/testsuite/gcc.misc-tests/dectest.exp +++ b/gcc/testsuite/gcc.misc-tests/dectest.exp @@ -21,18 +21,12 @@ # # Contributed by Ben Elliston <bje@au.ibm.com>. -set TORTURE_OPTIONS [list {} -O1 -O2 -O3 -msoft-float] +set TORTURE_OPTIONS [list {} -O1 -O2 -O3 -Os -msoft-float] # On x86 and x86-64 systems, -Os makes the stack alignment too small, # leading to segmentation faults when executing SSE instructions. # Force the alignment of the stack to 2^4 (16) bytes. -if {[istarget i?86-*-linux-gnu] || [istarget x86_64-*-linux-gnu]} { - lappend TORTURE_OPTIONS {-Os -mpreferred-stack-boundary=4} -} else { - lappend TORTURE_OPTIONS {-Os} -} - proc target-specific-flags {} { set result "-frounding-math " return $result |

