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