8sa1-gcc/gcc/testsuite/gcc.c-torture/execute/20000717-2.c
Geoff Keating 3b15076f36 simplify-rtx.c (simplify_relational_operation): Two signed values with equal high words are less/greater than each other if...
* simplify-rtx.c (simplify_relational_operation): Two signed
values with equal high words are less/greater than each other if
their low words are less/greater when considered as unsigned.

From-SVN: r35080
2000-07-17 08:41:05 +00:00

12 lines
136 B
C

static void
compare (long long foo)
{
if (foo < 4294967297LL)
abort();
}
int main(void)
{
compare (8589934591LL);
exit (0);
}