From: H.J. Lu Date: Fri, 27 Apr 2007 19:47:30 +0000 (+0000) Subject: 2007-04-27 H.J. Lu X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=484c222e443cb22ffc8308fbd49c7af26d62cf11;p=deliverable%2Fbinutils-gdb.git 2007-04-27 H.J. Lu * i386-dis.c (modrm): Put reg before rm. --- 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 + + * i386-dis.c (modrm): Put reg before rm. + 2007-04-26 H.J. Lu 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;