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

@ -1,3 +1,7 @@
2009-01-06 Joel Sherrill <joel.sherrill@oarcorp.com>
* r8c.opc, m32c.opc: Add parentheses to remove warnings.
2008-10-01 DJ Delorie <dj@redhat.com>
* int.c (trigger_peripheral_interrupt): Clear interrupt pending

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 */

View File

@ -475,11 +475,11 @@ decode_r8c()
/** 0111 1110 0101 srcx BNAND src */
BIT_OPC (srcx, !b & carry);
BIT_OPC (srcx, (!b) & carry);
/** 0111 1110 0111 srcx BNOR src */
BIT_OPC (srcx, !b | carry);
BIT_OPC (srcx, (!b) | carry);
/** 0111 1110 1010 dest BNOT:G dest */