aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/execute/931208-1.c
blob: ee2bc9f1e04df8806e2cf1613afcfbdcb813eaa9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
f ()
{
  unsigned long x, y = 1;

  x = ((y * 8192) - 216) / 16;
  return x;
}

main ()
{
  if (f () != 498)
    abort ();
  exit (0);
}