i386: Adjust rtx cost for imulq and imulw [PR115749]
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / vect-early-break_11.c
blob8085383a5687804086eec7e243ba0f7813d33621
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, int y)
18 unsigned ret = 0;
19 for (int o = 0; o < y; o++)
21 ret += o;
22 for (int i = 0; i < N; i++)
24 vect_b[i] = x + i;
25 if (vect_a[i] > x)
26 break;
27 vect_a[i] = x;
31 return ret;