diff options
author | Artjoms Sinkarovs <artyom.shinkaroff@gmail.com> | 2011-10-14 15:37:07 +0000 |
---|---|---|
committer | Artjoms Sinkarovs <tema@gcc.gnu.org> | 2011-10-14 15:37:07 +0000 |
commit | 7d7a0211604472c2d489d6304f8b56df4c619537 (patch) | |
tree | ad674ac1e668d620fb89f18237a14804e1de8bc4 | |
parent | 267ff156d0c1e67da703bcef05672ef7637b11a2 (diff) | |
download | gcc-7d7a0211604472c2d489d6304f8b56df4c619537.zip gcc-7d7a0211604472c2d489d6304f8b56df4c619537.tar.gz gcc-7d7a0211604472c2d489d6304f8b56df4c619537.tar.bz2 |
Exclude 32-bit archs from warn-vect-op* tests.
From-SVN: r179991
-rw-r--r-- | gcc/testsuite/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/testsuite/gcc.target/i386/warn-vect-op-1.c | 2 | ||||
-rw-r--r-- | gcc/testsuite/gcc.target/i386/warn-vect-op-2.c | 2 | ||||
-rw-r--r-- | gcc/testsuite/gcc.target/i386/warn-vect-op-3.c | 2 |
4 files changed, 9 insertions, 3 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 83d14d0..140630e 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2011-10-14 Artjoms Sinkarovs <artyom.shinkaroff@gmail.com> + + * gcc.target/i386/warn-vect-op-3.c: Exclude 32-bit architectures. + * gcc.target/i386/warn-vect-op-1.c: Ditto. + * gcc.target/i386/warn-vect-op-2.c: Ditto. + 2011-10-14 Tobias Burnus <burnus@net-b.de> PR fortran/50718 diff --git a/gcc/testsuite/gcc.target/i386/warn-vect-op-1.c b/gcc/testsuite/gcc.target/i386/warn-vect-op-1.c index f87cf59..6fecf92 100644 --- a/gcc/testsuite/gcc.target/i386/warn-vect-op-1.c +++ b/gcc/testsuite/gcc.target/i386/warn-vect-op-1.c @@ -1,4 +1,4 @@ -/* { dg-do compile } */ +/* { dg-do compile { target { ! { ia32 } } } } */ /* { dg-options "-mno-sse -Wvector-operation-performance" } */ #define vector(elcount, type) \ __attribute__((vector_size((elcount)*sizeof(type)))) type diff --git a/gcc/testsuite/gcc.target/i386/warn-vect-op-2.c b/gcc/testsuite/gcc.target/i386/warn-vect-op-2.c index f081d8a..6e63119 100644 --- a/gcc/testsuite/gcc.target/i386/warn-vect-op-2.c +++ b/gcc/testsuite/gcc.target/i386/warn-vect-op-2.c @@ -1,4 +1,4 @@ -/* { dg-do compile } */ +/* { dg-do compile { target { ! { ia32 } } } } */ /* { dg-options "-mno-sse -Wvector-operation-performance" } */ #define vector(elcount, type) \ __attribute__((vector_size((elcount)*sizeof(type)))) type diff --git a/gcc/testsuite/gcc.target/i386/warn-vect-op-3.c b/gcc/testsuite/gcc.target/i386/warn-vect-op-3.c index ccb9e98..bdbd8b5 100644 --- a/gcc/testsuite/gcc.target/i386/warn-vect-op-3.c +++ b/gcc/testsuite/gcc.target/i386/warn-vect-op-3.c @@ -1,4 +1,4 @@ -/* { dg-do compile } */ +/* { dg-do compile { target { ! { ia32 } } } } */ /* { dg-options "-mno-sse -Wvector-operation-performance" } */ #define vector(elcount, type) \ __attribute__((vector_size((elcount)*sizeof(type)))) type |