PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / pr61682.c
bloba5ab29d237042efeeeb981af209161c6a77df14a
1 /* PR tree-optimization/61682 */
3 int a, b;
4 static int *c = &b;
6 int
7 main ()
9 int *d = &a;
10 for (a = 0; a < 12; a++)
11 *c |= *d / 9;
13 if (b != 1)
14 __builtin_abort ();
16 return 0;