diff options
author | uros <uros@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-05-20 09:54:23 +0000 |
---|---|---|
committer | uros <uros@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-05-20 09:54:23 +0000 |
commit | 32ac0e0467b3e0e4b3c857b8956ce5d7a57bcaab (patch) | |
tree | e2123e92514cd250a695c4f95ef75257586af03d /gcc/testsuite | |
parent | c6ad2d2195fc7e23f8c672850cc47a0f97ce8f59 (diff) | |
download | gcc-32ac0e0467b3e0e4b3c857b8956ce5d7a57bcaab.tar.gz |
PR target/31585
* gcc.target/i386/sse-vect-types.c: Do not redefine "static"
and "__inline". Use "-msse" instead of "-msse2".
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@124868 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/testsuite')
-rw-r--r-- | gcc/testsuite/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/testsuite/gcc.target/i386/sse-vect-types.c | 10 |
2 files changed, 7 insertions, 9 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 20d58c7818e..3a39a0f2893 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2006-05-20 Uros Bizjak <ubizjak@gmail.com> + + PR target/31585 + * gcc.target/i386/sse-vect-types.c: Do not redefine "static" + and "__inline". Use "-msse" instead of "-msse2". + 2006-05-20 Manuel Lopez-Ibanez <manu@gcc.gnu.org> PR middle-end/7651 diff --git a/gcc/testsuite/gcc.target/i386/sse-vect-types.c b/gcc/testsuite/gcc.target/i386/sse-vect-types.c index 10a544d627b..19f1d9a57e7 100644 --- a/gcc/testsuite/gcc.target/i386/sse-vect-types.c +++ b/gcc/testsuite/gcc.target/i386/sse-vect-types.c @@ -1,13 +1,5 @@ /* { dg-do compile { target i?86-*-* x86_64-*-* } } */ -/* { dg-options "-O0 -msse2" } */ - -/* Test the intrinsics without optimization. All of them are - defined as inline functions in mmintrin.h that reference the proper - builtin functions. Defining away "static" and "__inline" results in - all of them being compiled as proper functions. */ - -#define static -#define __inline +/* { dg-options "-O0 -msse" } */ #include <xmmintrin.h> |