PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / pr57876.c
blobbcf691272862fc4b5a4a2f59695e6750a3e0ea5f
1 /* PR rtl-optimization/57876 */
3 extern void abort (void);
4 int a, b = 1, c, *d = &c, f, *g, h, j;
5 static int e;
7 int
8 main ()
10 int i;
11 for (i = 0; i < 2; i++)
13 long long k = b;
14 int l;
15 for (f = 0; f < 8; f++)
17 int *m = &e;
18 j = *d;
19 h = a * j - 1;
20 *m = (h == 0) < k;
21 g = &l;
24 if (e != 1)
25 abort ();
26 return 0;