Fix gimplification of ordering comparisons of arrays of bytes
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr96491.c
blob784559f4754ec0ef08cccbccf287359df2ca3b15
1 /* { dg-do compile } */
3 int rj;
5 void __attribute__ ((returns_twice))
6 da (void)
8 rj = 1;
11 void
12 c5 (void)
14 for (;;)
15 ++rj;
18 void
19 ls (int kz)
21 if (kz == 0)
23 rj = 0;
24 c5 ();
27 da ();
28 c5 ();