doc: add missing @option for musttail
[official-gcc.git] / gcc / testsuite / gcc.target / aarch64 / sve / peel_ind_2_run.c
blobb9785356d1826effe192f849509ec2c47c6bdae8
1 /* { dg-do run { target aarch64_sve_hw } } */
2 /* { dg-options "-O3 -mtune=thunderx" } */
3 /* { dg-options "-O3 -mtune=thunderx -msve-vector-bits=256 -fno-vect-cost-model" { target aarch64_sve256_hw } } */
5 #include "peel_ind_2.c"
7 int __attribute__ ((optimize (1)))
8 main (void)
10 foo ();
11 for (int i = 0; i < N; ++i)
13 if (x[i] != (i < START || i >= END ? 0 : i))
14 __builtin_abort ();
15 asm volatile ("" ::: "memory");
17 return 0;