Index: gcc/gcc/testsuite/gcc.dg/vect/vect-56.c |
diff --git a/gcc/gcc/testsuite/gcc.dg/vect/vect-56.c b/gcc/gcc/testsuite/gcc.dg/vect/vect-56.c |
index 387bd3ab8546bb21e35fff9ce172631a0da6b588..7b7da123591a6e88e8299e3ee8b5192d890c296e 100644 |
--- a/gcc/gcc/testsuite/gcc.dg/vect/vect-56.c |
+++ b/gcc/gcc/testsuite/gcc.dg/vect/vect-56.c |
@@ -30,13 +30,14 @@ void bar (float *pa, float *pb, float *pc) |
vect-57.c is similar to this one with two differences: |
aliasing is a problem, and the write access has unknown alignment. */ |
+float b[N] __attribute__ ((__aligned__(__BIGGEST_ALIGNMENT__))) = {0,3,6,9,12,15,18,21,24,27,30,33,36,39,42,45,48,51,54,57}; |
+float c[N] __attribute__ ((__aligned__(__BIGGEST_ALIGNMENT__))) = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19}; |
+ |
__attribute__ ((noinline)) int |
main1 () |
{ |
int i; |
- float a[N] __attribute__ ((__aligned__(16))); |
- float b[N] __attribute__ ((__aligned__(16))) = {0,3,6,9,12,15,18,21,24,27,30,33,36,39,42,45,48,51,54,57}; |
- float c[N] __attribute__ ((__aligned__(16))) = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19}; |
+ float a[N] __attribute__ ((__aligned__(__BIGGEST_ALIGNMENT__))); |
float *pa = a; |
float *pb = b; |
float *pc = c; |
@@ -67,6 +68,6 @@ int main (void) |
} |
/* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { xfail vect_no_align } } } */ |
-/* { dg-final { scan-tree-dump-times "Vectorizing an unaligned access" 2 "vect" { xfail vect_no_align } } } */ |
+/* { dg-final { scan-tree-dump-times "Vectorizing an unaligned access" 2 "vect" { xfail { vect_no_align } } } } */ |
/* { dg-final { scan-tree-dump-times "Alignment of access forced using peeling" 0 "vect" } } */ |
/* { dg-final { cleanup-tree-dump "vect" } } */ |