2009-01-06 Joel Sherrill <joel.sherrill@oarcorp.com>

* r8c.opc, m32c.opc: Add parentheses to remove warnings.
This commit is contained in:
Joel Sherrill
2009-01-06 19:01:36 +00:00
parent bf1d7d9ce0
commit ed25d7320a
3 changed files with 8 additions and 4 deletions

View File

@ -642,13 +642,13 @@ next_opcode:
prefix (0, 0, 0);
sc = decode_src23 (sss, ss, 1);
BIT_OPC (sc, bit, !b & carry);
BIT_OPC (sc, bit, (!b) & carry);
/** 0000 0001 1101 sss0 ss11 0bit BNOR src */
prefix (0, 0, 0);
sc = decode_src23 (sss, ss, 1);
BIT_OPC (sc, bit, !b | carry);
BIT_OPC (sc, bit, (!b) | carry);
/** 1101 ddd0 dd01 1bit BNOT dest */