c++: Implement for namespace statics CWG 2867 - Order of initialization for structure...
[official-gcc.git] / gcc / testsuite / gcc.dg / pr89594.c
blob4039f735af80892c57ff0eea2fa9adbce7869024
1 /* { dg-do compile } */
2 /* { dg-options "-O -ftree-loop-if-convert -ftree-loop-vectorize -fno-tree-ch" } */
4 int h3;
6 void
7 in (void)
9 long int zr;
10 int ee = 0;
12 for (zr = 0; zr < 1; zr = h3)
14 ee = !!h3 ? zr : 0;
16 h3 = 0;
17 while (h3 < 0)
18 h3 = 0;
21 h3 = 0;
22 while (h3 < 1)
23 h3 = !!ee ? (!!h3 + 1) : 0;