PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20011126-1.c
blobede938b00427b8e2445f1d7c6eb43261a590bad3
1 /* Produced a overflow in ifcvt.c, causing S to contain 0xffffffff7fffffff. */
3 int a = 1;
5 int main ()
7 long long s;
9 s = a;
10 if (s < 0)
11 s = -2147483648LL;
12 else
13 s = 2147483647LL;
15 if (s < 0)
16 abort ();
18 return 0;