Small ChangeLog tweak.
[official-gcc.git] / gcc / testsuite / gcc.dg / h8300-bit-insn-ice2.c
blob8b5f628759b41e051a914e5fef750b0f82136466
1 /* { dg-skip-if "" { "h8300*-*-*" } "*" "-msx*" } */
2 /* { dg-options "-O2" } */
3 /* ICE for bit instruction generation using 16-bit const */
5 #define MSTPCRA (*(volatile unsigned char*)0xFFFFC9)
6 #define MSTPCRA2 (*(volatile unsigned char*)0xFFFDC8)
8 int
9 main (void)
11 MSTPCRA = MSTPCRA2 & ~0x01;
12 MSTPCRA = MSTPCRA2 ^ ~0xFE;
13 MSTPCRA = MSTPCRA2 | ~0xFE;
14 return 0;