8sa1-gcc/gcc/testsuite/gcc.c-torture/unsorted/bit.c

14 lines
119 B
C
Raw Normal View History

1997-08-19 03:34:40 -04:00
bar (a)
{
return (a == 0);
}
foo (a)
int a;
{
if ((a & (1 << 26)) >= 0)
return 1;
else
return 2;
}