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

bar (a)
{
  return (a == 0);
}

foo (a)
     int a;
{
  if ((a & (1 << 26)) >= 0)
    return 1;
  else
    return 2;
}