diff options
author | Roger Sayle <roger@eyesopen.com> | 2006-05-21 16:21:19 +0000 |
---|---|---|
committer | Roger Sayle <sayle@gcc.gnu.org> | 2006-05-21 16:21:19 +0000 |
commit | 357f19a0db6794478e915ad7b1e01b7efe52d536 (patch) | |
tree | db5b272549b3b9a1779e197aa88b0150ceedee6d | |
parent | 5104d6484ac0a63c35986266affd74c6499b7bc6 (diff) | |
download | gcc-357f19a0db6794478e915ad7b1e01b7efe52d536.zip gcc-357f19a0db6794478e915ad7b1e01b7efe52d536.tar.gz gcc-357f19a0db6794478e915ad7b1e01b7efe52d536.tar.bz2 |
20060512-1.c: Add -msse2 command line option.
* gcc.target/i386/20060512-1.c: Add -msse2 command line option.
* gcc.target/i386/20060512-3.c: Likewise.
From-SVN: r113957
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/gcc.target/i386/20060512-1.c | 2 | ||||
-rw-r--r-- | gcc/testsuite/gcc.target/i386/20060512-3.c | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 91f55ee..6adae33 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2006-05-21 Roger Sayle <roger@eyesopen.com> + + * gcc.target/i386/20060512-1.c: Add -msse2 command line option. + * gcc.target/i386/20060512-3.c: Likewise. + 2006-05-21 Kazu Hirata <kazu@codesourcery.com> PR rtl-optimization/27671 diff --git a/gcc/testsuite/gcc.target/i386/20060512-1.c b/gcc/testsuite/gcc.target/i386/20060512-1.c index a3724ec..fc0bcf16 100644 --- a/gcc/testsuite/gcc.target/i386/20060512-1.c +++ b/gcc/testsuite/gcc.target/i386/20060512-1.c @@ -1,5 +1,5 @@ /* { dg-do run { target i?86-*-* } } */ -/* { dg-options "-std=gnu99" } */ +/* { dg-options "-std=gnu99 -msse2" } */ #include <emmintrin.h> __m128i __attribute__ ((__noinline__)) vector_using_function () diff --git a/gcc/testsuite/gcc.target/i386/20060512-3.c b/gcc/testsuite/gcc.target/i386/20060512-3.c index 72f0da0..f21cdc1 100644 --- a/gcc/testsuite/gcc.target/i386/20060512-3.c +++ b/gcc/testsuite/gcc.target/i386/20060512-3.c @@ -1,5 +1,5 @@ /* { dg-do run { target i?86-*-* } } */ -/* { dg-options "-std=gnu99 -mstackrealign" } */ +/* { dg-options "-std=gnu99 -msse2 -mstackrealign" } */ #include <emmintrin.h> __m128i __attribute__ ((__noinline__)) vector_using_function () |