i386: Adjust rtx cost for imulq and imulw [PR115749]
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / vect-early-break_29.c
blobb66fe204caee6a5b143c670e07de9a4a3b77455a
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 int in[100];
7 int out[100 * 2];
9 int main (void)
11 if (out[0] != in[100 - 1])
12 for (int i = 1; i <= 100; ++i)
13 if (out[i] != 2)
14 __builtin_abort ();
17 /* { dg-final { scan-tree-dump "vectorized 1 loops in function" "vect" } } */