PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / pr61306-3.c
blob6086e278627cc8158ef14131613f4a8c19ecfbfd
1 short a = -1;
2 int b;
3 char c;
5 int
6 main ()
8 c = a;
9 b = a | c;
10 if (b != -1)
11 __builtin_abort ();
12 return 0;