Daily bump.
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 990923-1.c
blob1494e96ad9fe4cc7369a58fdb5d35953b2eac664
1 void abort (void);
2 void exit (int);
4 #define mask 0xffff0000L
5 #define value 0xabcd0000L
7 long
8 foo (long x)
10 if ((x & mask) == value)
11 return x & 0xffffL;
12 return 1;
15 int
16 main (void)
18 if (foo (value) != 0 || foo (0) != 1)
19 abort ();
21 exit (0);