diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2007-04-27 19:47:30 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2007-04-27 19:47:30 +0000 |
commit | 484c222e443cb22ffc8308fbd49c7af26d62cf11 (patch) | |
tree | ffb570597aef7306a296e9e35c3adde58660a3fa /opcodes | |
parent | f29f96b63032063a5d3ed8331f1c4ebe97b74d1c (diff) | |
download | gdb-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.
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/ChangeLog | 4 | ||||
-rw-r--r-- | opcodes/i386-dis.c | 2 |
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; |