blob: b93626140048b1a88718fe1d3ee4693a1226249b [file] [log] [blame]
/* { dg-do compile } */
/* { dg-additional-options "-march=armv8.2-a+sve -msve-vector-bits=256 -mstrict-align -fwrapv" { target aarch64*-*-* } } */
int x[8][32];
void
foo (int start)
{
for (int i = start; i < start + 16; i++)
x[start][i] = i;
}