aboutsummaryrefslogtreecommitdiff
path: root/opcodes
diff options
context:
space:
mode:
authorJan Stancek <jstancek@redhat.com>2015-08-24 14:50:15 +0100
committerNick Clifton <nickc@redhat.com>2015-08-24 14:50:15 +0100
commit5f40e14d768b94f7fdc050aeba5ee62e6a8d5756 (patch)
tree051d379f0a185b1a5553760607bbcb97767ec749 /opcodes
parent77c365df78441f7b968ec0f62c7ed9f5de36dc60 (diff)
downloadfsf-binutils-gdb-5f40e14d768b94f7fdc050aeba5ee62e6a8d5756.zip
fsf-binutils-gdb-5f40e14d768b94f7fdc050aeba5ee62e6a8d5756.tar.gz
fsf-binutils-gdb-5f40e14d768b94f7fdc050aeba5ee62e6a8d5756.tar.bz2
Fix the partial disassembly of a broken three byte instruction at the end of a function.
opcodes * i386-dis.c (print_insn): Fix decoding of three byte operands. tests * gas/i386/intel.s: Add test of disassembly of a potential three byte instuction at the end of a function. * gas/i386/intel.d: Update expected disassembly.
Diffstat (limited to 'opcodes')
-rw-r--r--opcodes/ChangeLog4
-rw-r--r--opcodes/i386-dis.c6
2 files changed, 8 insertions, 2 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog
index 89e150f..3529dbc 100644
--- a/opcodes/ChangeLog
+++ b/opcodes/ChangeLog
@@ -1,3 +1,7 @@
+2015-08-24 Jan Stancek <jstancek@redhat.com>
+
+ * i386-dis.c (print_insn): Fix decoding of three byte operands.
+
2015-08-21 Alexander Fomin <alexander.fomin@intel.com>
PR binutils/18257
diff --git a/opcodes/i386-dis.c b/opcodes/i386-dis.c
index 055b38f..ae18cf2 100644
--- a/opcodes/i386-dis.c
+++ b/opcodes/i386-dis.c
@@ -13438,8 +13438,10 @@ print_insn (bfd_vma pc, disassemble_info *info)
if (*codep == 0x0f)
{
unsigned char threebyte;
- FETCH_DATA (info, codep + 2);
- threebyte = *++codep;
+
+ codep++;
+ FETCH_DATA (info, codep + 1);
+ threebyte = *codep;
dp = &dis386_twobyte[threebyte];
need_modrm = twobyte_has_modrm[*codep];
codep++;