]> Git Repo - binutils.git/commitdiff
2001-05-12 H.J. Lu <[email protected]>
authorH.J. Lu <[email protected]>
Sat, 12 May 2001 15:19:22 +0000 (15:19 +0000)
committerH.J. Lu <[email protected]>
Sat, 12 May 2001 15:19:22 +0000 (15:19 +0000)
* i386-dis.c (print_insn_i386): Always set `mod', `reg' and
`rm'.

opcodes/ChangeLog
opcodes/i386-dis.c

index 6736d2b556237f7ef62db58b33d223a96d3ea832..7604c3b58019c01f5fca3e9724bb21aa6996a775 100644 (file)
@@ -1,3 +1,8 @@
+2001-05-12  H.J. Lu  <[email protected]>
+
+       * i386-dis.c (print_insn_i386): Always set `mod', `reg' and
+       `rm'.
+
 2001-05-12  Peter Targett  <[email protected]>
 
        * arc-opc.c (arc_reg_names): Correct attribute for lp_count
index 4eb57da3823fba40cefe2015ccbdf50897a8ca45..4818a7bd9afa2e97283826c1dcf84ff6dbda7e80 100644 (file)
@@ -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)
     {
This page took 0.052951 seconds and 4 git commands to generate.