blob: 4db9032ec6c028c9a59072670eb3366a3469a31b [file] [log] [blame]
static void
compare (long long foo)
{
if (foo < 4294967297LL)
abort();
}
int main(void)
{
compare (8589934591LL);
exit (0);
}