summaryrefslogtreecommitdiff
path: root/opcodes
diff options
context:
space:
mode:
authorH.J. Lu <hjl@lucon.org>2007-04-27 19:47:30 +0000
committerH.J. Lu <hjl@lucon.org>2007-04-27 19:47:30 +0000
commitf5e4fa51eba5ac4a0e08af9f94151ba5fcdf84f3 (patch)
treea46d9b0347f8ada39cb24a36989e7a17a0371262 /opcodes
parent8dfc1d70e0e0a4edcacb55ef1dab5e3b4506fad9 (diff)
downloadbinutils-redhat-f5e4fa51eba5ac4a0e08af9f94151ba5fcdf84f3.tar.gz
2007-04-27 H.J. Lu <hongjiu.lu@intel.com>
* i386-dis.c (modrm): Put reg before rm.
Diffstat (limited to 'opcodes')
-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 5f84dc9d89..a3849e538f 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 511355ead0..aebb71e55f 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;