aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/bitw.c
blob: 9b9f591dc044f00d8756882666c7bf359648d0bb (plain)
1
2
3
4
5
6
7
8
9
10
11
/* { dg-additional-options "-std=gnu89" } */

foo (a)
     unsigned a;
{
  unsigned b = 0;

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