1 /* Disabling epilogues until we find a better way to deal with scans. */
2 /* { dg-additional-options "--param vect-epilogues-nomask=0" } */
3 /* { dg-require-effective-target vect_int } */
7 /* Statement used outside the loop, not used inside the loop. SCEV cannot
9 __attribute__ ((noinline
)) int
10 liveloop (int n
, int *x
, int *y
)
15 for (i
= 0; i
< n
; ++i
)
36 __asm__
volatile ("");
40 int ret
= liveloop (MAX
, a
, b
);
48 __asm__
volatile ("");
54 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" } } */
55 /* { dg-final { scan-tree-dump-times "vec_stmt_relevant_p: stmt live but not relevant" 1 "vect" } } */