aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/execute/991202-2.c
blob: fa97e2d431ef77ef0bd0df689ca627567e7f7abd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

int
f1 ()
{
  unsigned long x, y = 1;

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

int
main ()
{
  if (f1 () != 8)
    abort ();
  exit (0);
}