URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.target/] [xstormy16/] [bss_below100/] [14_set_b100w_bit_7.c] - Rev 826
Compare with Previous | Blame | View Log
/* { dg-options { -nostartfiles below100.o -Tbelow100.ld -O2 } } */ /* { dg-final { scan-assembler "set1 B100,#7" } } */ char acDummy[0xf0] __attribute__ ((__BELOW100__)); unsigned short B100 __attribute__ ((__BELOW100__)); unsigned short *p = &B100; void Do (void) { B100 |= 0x0080; } int main (void) { *p = 0x1234; Do (); return (*p == 0x12b4) ? 0 : 1; }