OSDN Git Service

* g++.dg/init/new1.C, g++.dg/template/alignof1.C,
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / unsorted / bit.c
1 bar (a)
2 {
3   return (a == 0);
4 }
5
6 foo (a)
7      int a;
8 {
9   if ((a & (1 << 26)) >= 0)
10     return 1;
11   else
12     return 2;
13 }