Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gcc.target / xstormy16 / data_below100 / 11_clr_b100b_bit_0.c
blob500f9baf41131c043c08e8473a0b46fdac7d0748
1 /* { dg-options { -nostartfiles below100.o -Tbelow100.ld -O2 } } */
2 /* { dg-final { scan-assembler "clr1 B100,#0" } } */
4 char acDummy[0xf0] __attribute__ ((__BELOW100__));
5 unsigned char B100 __attribute__ ((__BELOW100__)) = 0xcb;
6 unsigned char *p = &B100;
8 void
9 Do (void)
11 B100 &= ~0x01;
14 int
15 main (void)
17 Do ();
18 return (*p == 0xca) ? 0 : 1;