diff options
author | Joel Sherrill <joel.sherrill@oarcorp.com> | 2009-01-06 19:01:36 +0000 |
---|---|---|
committer | Joel Sherrill <joel.sherrill@oarcorp.com> | 2009-01-06 19:01:36 +0000 |
commit | ed25d7320abdd2411ab54d1757c1c4fafff7b928 (patch) | |
tree | d45a0189322456e7f5a53d91dcabf12e2f047a2e /sim/m32c/r8c.opc | |
parent | bf1d7d9ce0e35cfa01400e2da11f0d84ea89e481 (diff) | |
download | gdb-ed25d7320abdd2411ab54d1757c1c4fafff7b928.zip gdb-ed25d7320abdd2411ab54d1757c1c4fafff7b928.tar.gz gdb-ed25d7320abdd2411ab54d1757c1c4fafff7b928.tar.bz2 |
2009-01-06 Joel Sherrill <joel.sherrill@oarcorp.com>
* r8c.opc, m32c.opc: Add parentheses to remove warnings.
Diffstat (limited to 'sim/m32c/r8c.opc')
-rw-r--r-- | sim/m32c/r8c.opc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sim/m32c/r8c.opc b/sim/m32c/r8c.opc index abfc7b9..0e87464 100644 --- a/sim/m32c/r8c.opc +++ b/sim/m32c/r8c.opc @@ -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 */ |