Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.target / xstormy16 / sfr / 14_set_sfrw_bit_f.c
blob767e95ff48125caedcf0bb9b3938b34faf25c7a6
1 /* { dg-options { -nostartfiles below100.o -Tbelow100.ld -O2 } } */
2 /* { dg-final { scan-assembler "mov.w r.,32532" } } */
4 #define SFR (*((volatile unsigned short*)0x7f14))
5 unsigned short *p = (unsigned short *) 0x7f14;
7 void
8 Do (void)
10 SFR |= 0x8000;
13 int
14 main (void)
16 *p = 0x1234;
17 Do ();
18 return (*p == 0x9234) ? 0 : 1;