libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / no-scevccp-pr86725-2.c
blob66185a9483ba1401700480c6790bce5b43162920
1 /* { dg-do compile } */
2 /* { dg-additional-options "-O -w" } */
4 int
5 nr (int xe)
7 int oo, wo = 0;
9 for (oo = 0; oo < 4; ++oo)
11 int qq;
13 for (qq = 0; qq < 2; ++qq)
15 wo += 0x80000000;
16 xe += wo;
19 return xe;
22 /* { dg-final { scan-tree-dump "Unknown def-use cycle pattern" "vect" { target vect_int } } } */
23 /* { dg-final { scan-tree-dump-not "OUTER LOOP VECTORIZED" "vect" } } */