blob: e2ad793c9e50ab199aacb3ff09a58b228f2f7a62 [file] [log] [blame]
/* { dg-options { -nostartfiles below100.o -Tbelow100.ld -O2 } } */
/* { dg-final { scan-assembler "mov.w B100,#4660" } } */
char acDummy[0xf0] __attribute__ ((__BELOW100__));
unsigned short B100 __attribute__ ((__BELOW100__)) = 0x9876;
unsigned short *p = &B100;
void
Do (void)
{
B100 = 0x1234;
}
int
main (void)
{
Do ();
return (*p == 0x1234) ? 0 : 1;
}