Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.target / xstormy16 / data_below100 / 14_set_b100w_bit_f.c
blob1fce8df53b32de5014cebcfad7bffaf74cb9f67b
1 /* { dg-options { -nostartfiles below100.o -Tbelow100.ld -O2 } } */
2 /* { dg-final { scan-assembler "set1 B100\\+1,#7" } } */
4 char acDummy[0xf0] __attribute__ ((__BELOW100__));
5 unsigned short B100 __attribute__ ((__BELOW100__)) = 0x1234;
6 unsigned short *p = &B100;
8 void
9 Do (void)
11 B100 |= 0x8000;
14 int
15 main (void)
17 Do ();
18 return (*p == 0x9234) ? 0 : 1;