diff options
author | Nick Clifton <nickc@redhat.com> | 2007-02-15 10:32:06 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2007-02-15 10:32:06 +0000 |
commit | fd14f51bc88c7803002be4cb07e0cfd96d631571 (patch) | |
tree | baf329377bd5c72a196ebde093e6719d6a12361a /sim | |
parent | d5ac5a12a4e6360ade9f5957e462b1b9aeeb9e33 (diff) | |
download | gdb-fd14f51bc88c7803002be4cb07e0cfd96d631571.tar.gz |
* armemu.c (handle_v6_insn): Fix typo in sign extension test of the sext and sxtah instructions.
Diffstat (limited to 'sim')
-rw-r--r-- | sim/arm/ChangeLog | 5 | ||||
-rw-r--r-- | sim/arm/armemu.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/sim/arm/ChangeLog b/sim/arm/ChangeLog index 1432926271f..10c75ad1c43 100644 --- a/sim/arm/ChangeLog +++ b/sim/arm/ChangeLog @@ -1,3 +1,8 @@ +2007-02-15 Nick Clifton <nickc@redhat.com> + + * armemu.c (handle_v6_insn): Fix typo in sign extension test of + the sext and sxtah instructions. + 2007-02-08 Daniel Jacobowitz <dan@codesourcery.com> Reported by timeless@gmail.com: diff --git a/sim/arm/armemu.c b/sim/arm/armemu.c index e4879ebacb9..558e897582a 100644 --- a/sim/arm/armemu.c +++ b/sim/arm/armemu.c @@ -376,7 +376,7 @@ handle_v6_insn (ARMul_State * state, ARMword instr) break; Rm = ((state->Reg[BITS (0, 3)] >> ror) & 0xFFFF); - if (Rm & 8000) + if (Rm & 0x8000) Rm |= 0xffff0000; if (BITS (16, 19) == 0xf) |