From 4501ddddc663405607cd1e671dce9465e4e1516e Mon Sep 17 00:00:00 2001 From: "H.J. Lu" Date: Sat, 12 May 2001 15:19:22 +0000 Subject: [PATCH] 2001-05-12 H.J. Lu * i386-dis.c (print_insn_i386): Always set `mod', `reg' and `rm'. --- opcodes/ChangeLog | 5 +++++ opcodes/i386-dis.c | 6 ++++++ 2 files changed, 11 insertions(+) diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 6736d2b556..7604c3b580 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,8 @@ +2001-05-12 H.J. Lu + + * i386-dis.c (print_insn_i386): Always set `mod', `reg' and + `rm'. + 2001-05-12 Peter Targett * arc-opc.c (arc_reg_names): Correct attribute for lp_count diff --git a/opcodes/i386-dis.c b/opcodes/i386-dis.c index 4eb57da382..4818a7bd9a 100644 --- a/opcodes/i386-dis.c +++ b/opcodes/i386-dis.c @@ -3146,6 +3146,12 @@ print_insn_i386 (pc, info) reg = (*codep >> 3) & 7; rm = *codep & 7; } + else + { + mod = 0; + reg = 0; + rm = 0; + } if (dp->name == NULL && dp->bytemode1 == FLOATCODE) { -- 2.11.0