aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2007-04-27 19:47:30 +0000
committerH.J. Lu <hjl.tools@gmail.com>2007-04-27 19:47:30 +0000
commit484c222e443cb22ffc8308fbd49c7af26d62cf11 (patch)
treeffb570597aef7306a296e9e35c3adde58660a3fa
parentf29f96b63032063a5d3ed8331f1c4ebe97b74d1c (diff)
downloadgdb-484c222e443cb22ffc8308fbd49c7af26d62cf11.zip
gdb-484c222e443cb22ffc8308fbd49c7af26d62cf11.tar.gz
gdb-484c222e443cb22ffc8308fbd49c7af26d62cf11.tar.bz2
2007-04-27 H.J. Lu <hongjiu.lu@intel.com>
* i386-dis.c (modrm): Put reg before rm.
-rw-r--r--opcodes/ChangeLog4
-rw-r--r--opcodes/i386-dis.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog
index 5f84dc9..a3849e5 100644
--- a/opcodes/ChangeLog
+++ b/opcodes/ChangeLog
@@ -1,3 +1,7 @@
+2007-04-27 H.J. Lu <hongjiu.lu@intel.com>
+
+ * i386-dis.c (modrm): Put reg before rm.
+
2007-04-26 H.J. Lu <hongjiu.lu@intel.com>
PR binutils/4430
diff --git a/opcodes/i386-dis.c b/opcodes/i386-dis.c
index 511355e..aebb71e 100644
--- a/opcodes/i386-dis.c
+++ b/opcodes/i386-dis.c
@@ -1443,8 +1443,8 @@ static disassemble_info *the_info;
static struct
{
int mod;
- int rm;
int reg;
+ int rm;
}
modrm;
static unsigned char need_modrm;