aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/execute/20000717-2.c
blob: 4db9032ec6c028c9a59072670eb3366a3469a31b (plain)
1
2
3
4
5
6
7
8
9
10
11
static void
compare (long long foo)
{
  if (foo < 4294967297LL)
    abort();
}
int main(void)
{
  compare (8589934591LL);
  exit (0);
}