aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/xstormy16/data_below100/06_b100w_to_var.c
blob: 50a6dd2a1eab344bd6a709cbf9beadae06302c49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* { dg-options { -nostartfiles below100.o -Tbelow100.ld -O2 } } */
/* { dg-final { scan-assembler "mov.w r.,B100" } } */

char acDummy[0xf0] __attribute__ ((__BELOW100__));
unsigned short B100 __attribute__ ((__BELOW100__)) = 0x3456;
unsigned short *p = &B100;

unsigned short wData = 0x1234;

void
Do (void)
{
  wData = B100;
}

int
main (void)
{
  Do ();
  return (wData == 0x3456) ? 0 : 1;
}