diff options
author | David Edelsohn <dje.gcc@gmail.com> | 2012-11-10 14:26:54 +0000 |
---|---|---|
committer | David Edelsohn <dje@gcc.gnu.org> | 2012-11-10 09:26:54 -0500 |
commit | 65a08b07f2bafed09527a810c37d3a8b766646e6 (patch) | |
tree | 5e18792c5da102428e04668b4cb687e5ad34610e | |
parent | d1bc38e623d1f99525168fe3e18b6f66932310e1 (diff) | |
download | gcc-65a08b07f2bafed09527a810c37d3a8b766646e6.zip gcc-65a08b07f2bafed09527a810c37d3a8b766646e6.tar.gz gcc-65a08b07f2bafed09527a810c37d3a8b766646e6.tar.bz2 |
scal-to-vec2.c: Ignore non-standard ABI message.
* c-c++-common/scal-to-vec2.c: Ignore non-standard ABI message.
* c-c++-common/vector-compare-1.c: Same.
* c-c++-common/vector-compare-2.c: Same.
From-SVN: r193389
-rw-r--r-- | gcc/testsuite/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/testsuite/c-c++-common/scal-to-vec2.c | 2 | ||||
-rw-r--r-- | gcc/testsuite/c-c++-common/vector-compare-1.c | 2 | ||||
-rw-r--r-- | gcc/testsuite/c-c++-common/vector-compare-2.c | 2 |
4 files changed, 12 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index f27261f..2e0414e 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2012-11-10 David Edelsohn <dje.gcc@gmail.com> + + * c-c++-common/scal-to-vec2.c: Ignore non-standard ABI message. + * c-c++-common/vector-compare-1.c: Same. + * c-c++-common/vector-compare-2.c: Same. + 2012-11-10 Uros Bizjak <ubizjak@gmail.com> PR target/55247 diff --git a/gcc/testsuite/c-c++-common/scal-to-vec2.c b/gcc/testsuite/c-c++-common/scal-to-vec2.c index 1897b93..2721aa0 100644 --- a/gcc/testsuite/c-c++-common/scal-to-vec2.c +++ b/gcc/testsuite/c-c++-common/scal-to-vec2.c @@ -1,6 +1,8 @@ /* { dg-do compile } */ /* { dg-options "-fno-common" { target hppa*-*-hpux* } } */ /* { dg-options "-mabi=altivec" { target { { powerpc*-*-linux* } && ilp32 } } } */ +/* Ignore warning on some powerpc-ibm-aix configurations. */ +/* { dg-prune-output "non-standard ABI extension" } */ /* Test for C_MAYBE_CONST are folded correctly when expanding an expression to vector. */ diff --git a/gcc/testsuite/c-c++-common/vector-compare-1.c b/gcc/testsuite/c-c++-common/vector-compare-1.c index ef99ae4..8416c8d 100644 --- a/gcc/testsuite/c-c++-common/vector-compare-1.c +++ b/gcc/testsuite/c-c++-common/vector-compare-1.c @@ -1,6 +1,8 @@ /* { dg-do compile } */ /* { dg-options "-mabi=altivec" { target { { powerpc*-*-linux* } && ilp32 } } } */ /* { dg-prune-output "operand types are" } */ +/* Ignore warning on some powerpc-ibm-aix configurations. */ +/* { dg-prune-output "non-standard ABI extension" } */ #define vector(elcount, type) \ __attribute__((vector_size((elcount)*sizeof(type)))) type diff --git a/gcc/testsuite/c-c++-common/vector-compare-2.c b/gcc/testsuite/c-c++-common/vector-compare-2.c index 8cbcf07..d17a1b4 100644 --- a/gcc/testsuite/c-c++-common/vector-compare-2.c +++ b/gcc/testsuite/c-c++-common/vector-compare-2.c @@ -1,6 +1,8 @@ /* { dg-do compile } */ /* { dg-options "-fno-common" { target hppa*-*-hpux* } } */ /* { dg-options "-mabi=altivec" { target { { powerpc*-*-linux* } && ilp32 } } } */ +/* Ignore warning on some powerpc-ibm-aix configurations. */ +/* { dg-prune-output "non-standard ABI extension" } */ /* Test if C_MAYBE_CONST are folded correctly when creating VEC_COND_EXPR. */ |