2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20020127-1.c
blob88078dc500d8c01ad49a27e968106ab821f5e987
1 /* This used to fail on h8300. */
3 extern void abort (void);
4 extern void exit (int);
6 unsigned long
7 foo (unsigned long n)
9 return (~n >> 3) & 1;
12 int
13 main ()
15 if (foo (1 << 3) != 0)
16 abort ();
18 if (foo (0) != 1)
19 abort ();
21 exit (0);