Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gcc.target / xstormy16 / bss_below100 / 14_set_b100w_bit_8.c
blobf843d12af4dd1c8dc6be7ef6eba1477669556916
1 /* { dg-options { -nostartfiles below100.o -Tbelow100.ld -O2 } } */
2 /* { dg-final { scan-assembler "set1 B100\\+1,#0" } } */
4 char acDummy[0xf0] __attribute__ ((__BELOW100__));
5 unsigned short B100 __attribute__ ((__BELOW100__));
6 unsigned short *p = &B100;
8 void
9 Do (void)
11 B100 |= 0x0100;
14 int
15 main (void)
17 *p = 0x1234;
18 Do ();
19 return (*p == 0x1334) ? 0 : 1;