3b15076f36
* 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
12 lines
136 B
C
12 lines
136 B
C
static void
|
|
compare (long long foo)
|
|
{
|
|
if (foo < 4294967297LL)
|
|
abort();
|
|
}
|
|
int main(void)
|
|
{
|
|
compare (8589934591LL);
|
|
exit (0);
|
|
}
|