summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/xstormy16/bss_below100/03_var_to_b100b.c
blob: bcc99118966d1be9df8cde6d787817554a83fa3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* { dg-options { -nostartfiles below100.o -Tbelow100.ld -O2 } } */
/* { dg-final { scan-assembler "mov.b B100,r" } } */

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

unsigned char yData = 0x12;

void
Do (void)
{
  B100 = yData;
}

int
main (void)
{
  *p = 0x34;
  Do ();
  return (*p == 0x12) ? 0 : 1;
}