Daily bump.
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / vect-early-break_13.c
blob58f5f0ae7e2eace4653e2d6788db80624b714ff5
1 /* { dg-add-options vect_early_break } */
2 /* { dg-do compile } */
3 /* { dg-require-effective-target vect_early_break } */
4 /* { dg-require-effective-target vect_int } */
6 /* { dg-additional-options "-Ofast" } */
8 /* { dg-final { scan-tree-dump "LOOP VECTORIZED" "vect" } } */
10 #ifndef N
11 #define N 803
12 #endif
13 unsigned vect_a[N];
14 unsigned vect_b[N];
16 unsigned test4(unsigned x)
18 unsigned ret = 0;
19 for (int i = 0; i < N; i++)
21 vect_b[i] = x + i;
22 if (vect_a[i] > x)
23 return vect_a[i] * x;
24 vect_a[i] = x;
27 return ret;