libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr92345.c
blob331615b13d1c32e3cec50c39a4d87ce0acf1e302
1 /* { dg-do compile } */
2 /* { dg-additional-options "-ftree-vectorize" } */
4 long int x1;
5 int fr;
7 int
8 us (int sk, int jx)
10 while (sk < 1)
12 jx *= 2;
13 fr += x1 + 1;
14 ++sk;
17 return jx;