Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.target / xstormy16 / bss_below100 / 05_b100b_to_var.c
blobe5f57e80325e3c47819b5759df08bec1c199451e
1 /* { dg-options { -nostartfiles below100.o -Tbelow100.ld -O2 } } */
2 /* { dg-final { scan-assembler "mov.b r., *B100" } } */
4 char acDummy[0xf0] __attribute__ ((__BELOW100__));
5 unsigned char B100 __attribute__ ((__BELOW100__));
6 unsigned char *p = &B100;
8 unsigned char yData = 0x12;
10 void
11 Do (void)
13 yData = B100;
16 int
17 main (void)
19 *p = 0x34;
20 Do ();
21 return (yData == 0x34) ? 0 : 1;