PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20000205-1.c
blobb605b84b6b116f21c8001195e99eab90cd11d5f7
1 static int f (int a)
3 if (a == 0)
4 return 0;
5 do
6 if (a & 128)
7 return 1;
8 while (f (0));
9 return 0;
12 int main(void)
14 if (f (~128))
15 abort ();
16 exit (0);