PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 991202-2.c
blobfa97e2d431ef77ef0bd0df689ca627567e7f7abd
2 int
3 f1 ()
5 unsigned long x, y = 1;
7 x = ((y * 8192) - 216) % 16;
8 return x;
11 int
12 main ()
14 if (f1 () != 8)
15 abort ();
16 exit (0);