PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20030120-2.c
blob298bc4f5b4f57eab26410fe759290110623de5d5
1 /* PR 8848 */
3 extern void abort ();
5 int foo(int status)
7 int s = 0;
8 if (status == 1) s=1;
9 if (status == 3) s=3;
10 if (status == 4) s=4;
11 return s;
14 int main()
16 if (foo (3) != 3)
17 abort ();
18 return 0;