PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / pr69320-2.c
blobb85672ce5289e29b41ee383d5fd5c002cf4bc46a
2 #include <stdlib.h>
4 int a, *c, d, e, g, f;
5 short b;
7 int
8 fn1 ()
10 int h = d != 10;
11 if (h > g)
12 asm volatile ("" : : : "memory");
13 if (h == 10)
15 int *i = 0;
16 a = 0;
17 for (; a < 7; a++)
18 for (; *i;)
21 else
23 b = e / h;
24 return f;
26 c = &h;
27 abort ();
30 int
31 main ()
33 fn1 ();
34 exit (0);