1 /* { dg-do run { target { aarch64_sve_hw } } } */
2 /* { dg-options "-O2 -ftree-vectorize" } */
3 
4 #include "var_stride_5.c"
5 #include "var_stride_1.h"
6 
7 int
main(void)8 main (void)
9 {
10   for (int n = -10; n < 10; ++n)
11     for (int offset = -33; offset <= 33; ++offset)
12       test (n, n, offset);
13   return 0;
14 }
15