testsuite: Revert to the original version of pr100056.c
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / pr95570.c
blobb93626140048b1a88718fe1d3ee4693a1226249b
1 /* { dg-do compile } */
2 /* { dg-additional-options "-march=armv8.2-a+sve -msve-vector-bits=256 -mstrict-align -fwrapv" { target aarch64*-*-* } } */
4 int x[8][32];
6 void
7 foo (int start)
9 for (int i = start; i < start + 16; i++)
10 x[start][i] = i;