PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20050104-1.c
blob6083e9c0686f006e4e0572df3e6e155573dced28
1 /* PR tree-optimization/19060 */
3 void abort (void);
5 static
6 long long min ()
8 return -__LONG_LONG_MAX__ - 1;
11 void
12 foo (long long j)
14 if (j > 10 || j < min ())
15 abort ();
18 int
19 main (void)
21 foo (10);
22 return 0;