aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Botcazou <ebotcazou@adacore.com>2011-07-06 08:46:41 +0000
committerEric Botcazou <ebotcazou@gcc.gnu.org>2011-07-06 08:46:41 +0000
commite6a64b21cb136a8b4e65f5d14cc9206e8baba54f (patch)
tree7c40ffff1fb0757a66c32f224b45341ea52deced
parent31d2ea2a9ad99d3d3c238c204fe29a4ad7c357e6 (diff)
downloadgcc-e6a64b21cb136a8b4e65f5d14cc9206e8baba54f.zip
gcc-e6a64b21cb136a8b4e65f5d14cc9206e8baba54f.tar.gz
gcc-e6a64b21cb136a8b4e65f5d14cc9206e8baba54f.tar.bz2
re PR testsuite/49542 (2 failures in the vectorization testsuite in 64-bit mode)
PR testsuite/49542 * gcc.dg/vect/pr33804.c: XFAIL if vect_no_align unconditionally. * gcc.dg/vect/slp-multitypes-3.c: XFAIL on SPARC unconditionally. From-SVN: r175905
-rw-r--r--gcc/testsuite/ChangeLog6
-rw-r--r--gcc/testsuite/gcc.dg/vect/pr33804.c4
-rw-r--r--gcc/testsuite/gcc.dg/vect/slp-multitypes-3.c5
3 files changed, 10 insertions, 5 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 072bf15..97136fe 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,9 @@
+2011-07-06 Eric Botcazou <ebotcazou@adacore.com>
+
+ PR testsuite/49542
+ * gcc.dg/vect/pr33804.c: XFAIL if vect_no_align unconditionally.
+ * gcc.dg/vect/slp-multitypes-3.c: XFAIL on SPARC unconditionally.
+
2011-07-05 Jason Merrill <jason@redhat.com>
PR c++/48157
diff --git a/gcc/testsuite/gcc.dg/vect/pr33804.c b/gcc/testsuite/gcc.dg/vect/pr33804.c
index 168213e..a4fb386 100644
--- a/gcc/testsuite/gcc.dg/vect/pr33804.c
+++ b/gcc/testsuite/gcc.dg/vect/pr33804.c
@@ -11,6 +11,6 @@ void f(unsigned char *s, unsigned char *d, int n) {
}
}
-/* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { xfail { vect_no_align && ilp32 } } } } */
-/* { dg-final { scan-tree-dump-times "vectorizing stmts using SLP" 1 "vect" { xfail { vect_no_align && ilp32 } } } } */
+/* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { xfail vect_no_align } } } */
+/* { dg-final { scan-tree-dump-times "vectorizing stmts using SLP" 1 "vect" { xfail vect_no_align } } } */
/* { dg-final { cleanup-tree-dump "vect" } } */
diff --git a/gcc/testsuite/gcc.dg/vect/slp-multitypes-3.c b/gcc/testsuite/gcc.dg/vect/slp-multitypes-3.c
index 6353448..c5fd52e 100644
--- a/gcc/testsuite/gcc.dg/vect/slp-multitypes-3.c
+++ b/gcc/testsuite/gcc.dg/vect/slp-multitypes-3.c
@@ -87,7 +87,6 @@ int main (void)
return 0;
}
-/* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { xfail { sparc*-*-* && ilp32 } } } } */
-/* { dg-final { scan-tree-dump-times "vectorizing stmts using SLP" 2 "vect" { xfail { sparc*-*-* && ilp32 } }} } */
+/* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { xfail sparc*-*-* } } } */
+/* { dg-final { scan-tree-dump-times "vectorizing stmts using SLP" 2 "vect" { xfail sparc*-*-* } } } */
/* { dg-final { cleanup-tree-dump "vect" } } */
-