diff options
author | Uros Bizjak <ubizjak@gmail.com> | 2007-05-20 11:54:23 +0200 |
---|---|---|
committer | Uros Bizjak <uros@gcc.gnu.org> | 2007-05-20 11:54:23 +0200 |
commit | 643827b29b291d05d4cbe2f64cc78da272232514 (patch) | |
tree | e2123e92514cd250a695c4f95ef75257586af03d /gcc | |
parent | ffd5f2761323eea74743302bfdbff644eceae83b (diff) | |
download | gcc-643827b29b291d05d4cbe2f64cc78da272232514.zip gcc-643827b29b291d05d4cbe2f64cc78da272232514.tar.gz gcc-643827b29b291d05d4cbe2f64cc78da272232514.tar.bz2 |
re PR target/31585 (gcc.target/i386/sse-vect-types.c FAILs (also sse-13.c and sse-14.c))
PR target/31585
* gcc.target/i386/sse-vect-types.c: Do not redefine "static"
and "__inline". Use "-msse" instead of "-msse2".
From-SVN: r124868
Diffstat (limited to 'gcc')
-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 20d58c7..3a39a0f 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 10a544d..19f1d9a5 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> |