PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / pr68624.c
blobabb716b1550038cb3d0e96e8917b7ed0ba8bfa83
1 int b, c, d, e = 1, f, g, h, j;
3 static int
4 fn1 ()
6 int a = c;
7 if (h)
8 return 9;
9 g = (c || b) % e;
10 if ((g || f) && b)
11 return 9;
12 e = d;
13 for (c = 0; c > -4; c--)
15 if (d)
16 c--;
17 j = c;
18 return d;
21 int
22 main ()
24 fn1 ();
26 if (c != -4)
27 __builtin_abort ();
29 return 0;