* cris-dis.c (bytes_to_skip): Handle new parameter prefix_matchedp.
[deliverable/binutils-gdb.git] / opcodes / m68k-dis.c
index 3504467f7d0b3e03be46f1585ef8f3d77a7b1b6c..5e4150d05ed8e59d7cb1f05c67c5326a63bf04a9 100644 (file)
@@ -1499,6 +1499,20 @@ print_insn_m68k (bfd_vma memaddr, disassemble_info *info)
                }
            }
 
+         /* Don't match FPU insns with non-default coprocessor ID.  */
+         if (*d == '\0')
+           {
+             for (d = opc->args; *d; d += 2)
+               {
+                 if (d[0] == 'I')
+                   {
+                     val = fetch_arg (buffer, 'd', 3, info);
+                     if (val != 1)
+                       break;
+                   }
+               }
+           }
+
          if (*d == '\0')
            if ((val = match_insn_m68k (memaddr, info, opc, & priv)))
              return val;
This page took 0.025127 seconds and 4 git commands to generate.