1 /* { dg-do compile } */
2 /* { dg-add-options vect_early_break } */
3 /* { dg-require-effective-target vect_early_break } */
4 /* { dg-require-effective-target vect_int } */
6 /* { dg-final { scan-tree-dump "vectorizing stmts using SLP" "vect" } } */
7 /* { dg-final { scan-tree-dump "Loop contains only SLP stmts" "vect" } } */
15 unsigned test4(unsigned x
)
18 for (int i
= 0; i
< N
; i
+=2)
21 vect_b
[i
+1] = x
+ i
+1;
24 if (vect_a
[i
+1]*2 != x
)