diff options
author | Nick Clifton <nickc@redhat.com> | 2000-02-08 20:54:27 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2000-02-08 20:54:27 +0000 |
commit | 6d358e869b1efe22fa6697a8aa4191ddacbacef0 (patch) | |
tree | 8e46af77cc6bd1e1f07b560c31b7cdf0fbbffab9 /sim/arm/armemu.h | |
parent | ab266a97fb888efa38e7cdc1d53b6c97337b589f (diff) | |
download | gdb-6d358e869b1efe22fa6697a8aa4191ddacbacef0.zip gdb-6d358e869b1efe22fa6697a8aa4191ddacbacef0.tar.gz gdb-6d358e869b1efe22fa6697a8aa4191ddacbacef0.tar.bz2 |
Fix compile time warning messages.
Diffstat (limited to 'sim/arm/armemu.h')
-rw-r--r-- | sim/arm/armemu.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sim/arm/armemu.h b/sim/arm/armemu.h index 47238a8..b80c4ef 100644 --- a/sim/arm/armemu.h +++ b/sim/arm/armemu.h @@ -170,8 +170,8 @@ extern ARMword isize; ASSIGNV((state->Reg[15] & VBIT) != 0) ; \ } \ else { \ - state->Reg[15] = R15PC | (s) & (CCBITS | R15INTBITS | R15MODEBITS) ; \ - ARMul_R15Altered(state) ; \ + state->Reg[15] = R15PC | ((s) & (CCBITS | R15INTBITS | R15MODEBITS)) ; \ + ARMul_R15Altered (state) ; \ } #define SETABORT(i,m) state->Cpsr = ECC | EINT | (i) | (m) |