diff options
author | Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> | 2014-10-24 09:09:43 +0000 |
---|---|---|
committer | Rainer Orth <ro@gcc.gnu.org> | 2014-10-24 09:09:43 +0000 |
commit | e7d8c7020c4e0e392c5d64af86d1135ab02d5902 (patch) | |
tree | a63042286a9bc9cbbc208bfe42f356e7729df593 | |
parent | a48acecb8f705c87940e647abedd6464d1418ae3 (diff) | |
download | gcc-e7d8c7020c4e0e392c5d64af86d1135ab02d5902.zip gcc-e7d8c7020c4e0e392c5d64af86d1135ab02d5902.tar.gz gcc-e7d8c7020c4e0e392c5d64af86d1135ab02d5902.tar.bz2 |
Fix gcc.dg/pr63594-1.c execution on Solaris/x86
* gcc.dg/pr63594-1.c: Apply -mno-mmx to all i?86-*-* and x86_64-*-*
targets.
* gcc.dg/pr63594-2.c: Likewise.
From-SVN: r216629
-rw-r--r-- | gcc/testsuite/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/pr63594-1.c | 2 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/pr63594-2.c | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 612cd02..4ffc8af 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2014-10-24 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> + + * gcc.dg/pr63594-1.c: Apply -mno-mmx to all i?86-*-* and x86_64-*-* + targets. + * gcc.dg/pr63594-2.c: Likewise. + 2014-10-24 Uros Bizjak <ubizjak@gmail.com> * gcc.target/alpha/980217-1.c (main): Fix implicit int. diff --git a/gcc/testsuite/gcc.dg/pr63594-1.c b/gcc/testsuite/gcc.dg/pr63594-1.c index 2c57796..8d0ad2e 100644 --- a/gcc/testsuite/gcc.dg/pr63594-1.c +++ b/gcc/testsuite/gcc.dg/pr63594-1.c @@ -1,7 +1,7 @@ /* PR target/63594 */ /* { dg-do compile } */ /* { dg-options "-O2 -Wno-psabi" } */ -/* { dg-additional-options "-mno-mmx" { target i?86-*-linux* x86_64-*-linux* } } */ +/* { dg-additional-options "-mno-mmx" { target i?86-*-* x86_64-*-* } } */ #define C1 c #define C2 C1, C1 diff --git a/gcc/testsuite/gcc.dg/pr63594-2.c b/gcc/testsuite/gcc.dg/pr63594-2.c index 39a64fa..23c11b1 100644 --- a/gcc/testsuite/gcc.dg/pr63594-2.c +++ b/gcc/testsuite/gcc.dg/pr63594-2.c @@ -1,7 +1,7 @@ /* PR target/63594 */ /* { dg-do run } */ /* { dg-options "-O2 -Wno-psabi" } */ -/* { dg-additional-options "-mno-mmx" { target i?86-*-linux* x86_64-*-linux* } } */ +/* { dg-additional-options "-mno-mmx" { target i?86-*-* x86_64-*-* } } */ #define C1 c #define C2 C1, C1 |