aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/unsorted/bitw.c
blob: 585cd32e603626793e045b21255cec88769aba0d (plain)
1
2
3
4
5
6
7
8
9
foo (a)
     unsigned a;
{
  unsigned b = 0;

  if ((a & 12345678) > b)
    return 1;
  return 0;
}