Add support for conditional reductions using SVE CLASTB
[official-gcc.git] / gcc / testsuite / gcc.target / aarch64 / sve / peel_ind_2.c
blob2bfc09a7602de4a208e11be1c6df67513cebba84
1 /* { dg-do compile } */
2 /* Pick an arbitrary target for which unaligned accesses are more
3 expensive. */
4 /* { dg-options "-O3 -msve-vector-bits=256 -mtune=thunderx" } */
6 #define N 512
7 #define START 7
8 #define END 22
10 int x[N] __attribute__((aligned(32)));
12 void __attribute__((noinline, noclone))
13 foo (void)
15 for (unsigned int i = START; i < END; ++i)
16 x[i] = i;
19 /* We should operate on aligned vectors. */
20 /* { dg-final { scan-assembler {\tadrp\tx[0-9]+, x\n} } } */
21 /* We should unroll the loop three times. */
22 /* { dg-final { scan-assembler-times "\tst1w\t" 3 } } */