aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/execute/960219-1.c
blob: d21bcfcad243bea85419c576311f09ad43c96642 (plain)
1
2
3
4
5
6
7
8
9
10
11
f (int i)
{
  if (((1 << i) & 1) == 0)
    abort ();
}

main ()
{
  f (0);
  exit (0);
}