diff options
author | Paul Brook <paul@codesourcery.com> | 2006-07-19 12:53:33 +0000 |
---|---|---|
committer | Paul Brook <paul@codesourcery.com> | 2006-07-19 12:53:33 +0000 |
commit | 401a54cf6e563c470108c35fe892e8b7be2b227a (patch) | |
tree | e95f468a4ff588d406f7e158a7a30b033ef81404 /opcodes | |
parent | 8c991f18837f080c5aa82bbd7b074ae47a90991d (diff) | |
download | gdb-401a54cf6e563c470108c35fe892e8b7be2b227a.zip gdb-401a54cf6e563c470108c35fe892e8b7be2b227a.tar.gz gdb-401a54cf6e563c470108c35fe892e8b7be2b227a.tar.bz2 |
2006-07-19 Paul Brook <paul@codesourcery.com>
gas/
* config/tc-arm.c (insns): Fix rbit Arm opcode.
gas/testsuite/
* gas/arm/archv6t2.d: Adjust expected output for rbit.
opcodes/
* armd-dis.c (arm_opcodes): Fix rbit opcode.
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/ChangeLog | 4 | ||||
-rw-r--r-- | opcodes/arm-dis.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index eefd662..d78cb7c 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,7 @@ +2006-07-19 Paul Brook <paul@codesourcery.com> + + * armd-dis.c (arm_opcodes): Fix rbit opcode. + 2006-07-18 H.J. Lu <hongjiu.lu@intel.com> * i386-dis.c (grps): Change "sldtQ", "strQ" and "smswQ" to diff --git a/opcodes/arm-dis.c b/opcodes/arm-dis.c index a375578..147e149 100644 --- a/opcodes/arm-dis.c +++ b/opcodes/arm-dis.c @@ -761,7 +761,7 @@ static const struct opcode32 arm_opcodes[] = {ARM_EXT_V6T2, 0x00300090, 0x0f300090, "ldr%c%6's%5?hbt\t%12-15r, %s"}, {ARM_EXT_V6T2, 0x03000000, 0x0ff00000, "movw%c\t%12-15r, %V"}, {ARM_EXT_V6T2, 0x03400000, 0x0ff00000, "movt%c\t%12-15r, %V"}, - {ARM_EXT_V6T2, 0x03ff0f30, 0x0fff0ff0, "rbit%c\t%12-15r, %0-3r"}, + {ARM_EXT_V6T2, 0x06ff0f30, 0x0fff0ff0, "rbit%c\t%12-15r, %0-3r"}, {ARM_EXT_V6T2, 0x07a00050, 0x0fa00070, "%22?usbfx%c\t%12-15r, %0-3r, #%7-11d, #%16-20W"}, /* ARM V6Z instructions. */ |