Index: gcc/gcc/testsuite/gcc.dg/vect/vect-54.c |
diff --git a/gcc/gcc/testsuite/gcc.dg/vect/vect-54.c b/gcc/gcc/testsuite/gcc.dg/vect/vect-54.c |
index 6e1aa549a97db4fc21b79049fa6811c2127e0da5..629e82df59b6597ecda3d05830c88eebe2c71644 100644 |
--- a/gcc/gcc/testsuite/gcc.dg/vect/vect-54.c |
+++ b/gcc/gcc/testsuite/gcc.dg/vect/vect-54.c |
@@ -26,13 +26,14 @@ void bar (float *pa, float *pb, float *pc) |
vect-58.c is similar to this one with one difference: |
the loop bound is unknown. */ |
+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; |