Fix gimplification of ordering comparisons of arrays of bytes
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr105337.c
blob4a0bdf0363c6e2db3f68750824c4bb9aa254a91b
1 /* { dg-do run } */
3 __attribute__((noipa)) void
4 bar (int x)
6 (void) x;
9 int a;
11 int
12 foo (void)
14 int b, c;
15 for (b = 0; b < 3; b++)
17 if (!a)
18 break;
19 c--;
20 bar (c);
22 return b;
25 int
26 main ()
28 if (foo ())
29 __builtin_abort ();
30 return 0;