diff options
author | Uros Bizjak <ubizjak@gmail.com> | 2014-11-03 09:30:21 +0100 |
---|---|---|
committer | Uros Bizjak <uros@gcc.gnu.org> | 2014-11-03 09:30:21 +0100 |
commit | b1c94de07fb4bf1a210b297c074d366f70fcfc20 (patch) | |
tree | 832f890146ead058d2f0c9aa1de2dfd754818af0 /gcc | |
parent | b5a4533b365b1405a3649f2f7c135ade80917e7b (diff) | |
download | gcc-b1c94de07fb4bf1a210b297c074d366f70fcfc20.zip gcc-b1c94de07fb4bf1a210b297c074d366f70fcfc20.tar.gz gcc-b1c94de07fb4bf1a210b297c074d366f70fcfc20.tar.bz2 |
20010129-1.c: Compile with -mtune=i686 for ia32 targets only.
* gcc.c-torture/execute/20010129-1.c: Compile with -mtune=i686
for ia32 targets only.
* g++.dg/ext/attrib42.C: Compile for ia32 targets only.
* g++.dg/tree-ssa/pr29902.C: Ditto.
* g++.dg/cpp0x/gen-attrs-42.C: Ditto.
From-SVN: r217030
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 8 | ||||
-rw-r--r-- | gcc/testsuite/g++.dg/cpp0x/gen-attrs-42.C | 2 | ||||
-rw-r--r-- | gcc/testsuite/g++.dg/ext/attrib42.C | 2 | ||||
-rw-r--r-- | gcc/testsuite/g++.dg/tree-ssa/pr29902.C | 3 | ||||
-rw-r--r-- | gcc/testsuite/gcc.c-torture/execute/20010129-1.c | 2 |
5 files changed, 12 insertions, 5 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 1bf0c07..62a1c88 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,11 @@ +2014-11-03 Uros Bizjak <ubizjak@gmail.com> + + * gcc.c-torture/execute/20010129-1.c: Compile with -mtune=i686 + for ia32 targets only. + * g++.dg/ext/attrib42.C: Compile for ia32 targets only. + * g++.dg/tree-ssa/pr29902.C: Ditto. + * g++.dg/cpp0x/gen-attrs-42.C: Ditto. + 2014-11-03 Zhenqiang Chen <zhenqiang.chen@arm.com> * gcc.target/arm/ifcvt-size-check.c: New test. diff --git a/gcc/testsuite/g++.dg/cpp0x/gen-attrs-42.C b/gcc/testsuite/g++.dg/cpp0x/gen-attrs-42.C index 81b9239..9fcd556 100644 --- a/gcc/testsuite/g++.dg/cpp0x/gen-attrs-42.C +++ b/gcc/testsuite/g++.dg/cpp0x/gen-attrs-42.C @@ -1,5 +1,5 @@ // { dg-options "-pedantic" } -// { dg-do compile { target { { i?86-*-* x86_64-*-* } && ilp32 } } } +// { dg-do compile { target { { i?86-*-* x86_64-*-* } && ia32 } } } // { dg-require-effective-target c++11 } struct A { diff --git a/gcc/testsuite/g++.dg/ext/attrib42.C b/gcc/testsuite/g++.dg/ext/attrib42.C index 03017c7..307a5d6 100644 --- a/gcc/testsuite/g++.dg/ext/attrib42.C +++ b/gcc/testsuite/g++.dg/ext/attrib42.C @@ -1,4 +1,4 @@ -// { dg-do compile { target { { i?86-*-* x86_64-*-* } && ilp32 } } } +// { dg-do compile { target { { i?86-*-* x86_64-*-* } && ia32 } } } struct A { __attribute__((fastcall)) diff --git a/gcc/testsuite/g++.dg/tree-ssa/pr29902.C b/gcc/testsuite/g++.dg/tree-ssa/pr29902.C index 98c98fe..996a3b9 100644 --- a/gcc/testsuite/g++.dg/tree-ssa/pr29902.C +++ b/gcc/testsuite/g++.dg/tree-ssa/pr29902.C @@ -1,6 +1,5 @@ -/* { dg-do compile { target i?86-*-* x86_64-*-* } } */ +/* { dg-do compile { target { { i?86-*-* x86_64-*-* } && ia32 } } } */ /* { dg-options "-O1 -fprefetch-loop-arrays -march=athlon" } */ -/* { dg-require-effective-target ilp32 } */ int length1(); int g(int); diff --git a/gcc/testsuite/gcc.c-torture/execute/20010129-1.c b/gcc/testsuite/gcc.c-torture/execute/20010129-1.c index 519ed1f..ac83efe 100644 --- a/gcc/testsuite/gcc.c-torture/execute/20010129-1.c +++ b/gcc/testsuite/gcc.c-torture/execute/20010129-1.c @@ -1,4 +1,4 @@ -/* { dg-options "-mtune=i686" { target { { i?86-*-* x86_64-*-* } && ilp32 } } } */ +/* { dg-options "-mtune=i686" { target { { i?86-*-* x86_64-*-* } && ia32 } } } */ extern void abort (void); extern void exit (int); |