* hppa-dis.c: (print_insn_hppa): Handle 'fX'.
[deliverable/binutils-gdb.git] / opcodes / hppa-dis.c
index d512d86e84ac81351029c211816fc31d0ee8072f..4c2c6ce6f86ef4f507786ea4183eab904beb9ede 100644 (file)
@@ -384,6 +384,16 @@ print_insn_hppa (memaddr, info)
                      else
                        fput_fp_reg (GET_FIELD (insn, 6, 10), info);
                      break;
+
+                   /* 'fA' will not generate a space before the regsiter
+                       name.  Normally that is fine.  Except that it
+                       causes problems with xmpyu which has no FP format
+                       completer.  */
+                   case 'X':
+                     fputs_filtered (" ", info);
+
+                   /* FALLTHRU */
+
                    case 'A':
                      if (GET_FIELD (insn, 24, 24))
                        fput_fp_reg_r (GET_FIELD (insn, 6, 10), info);
This page took 0.024034 seconds and 4 git commands to generate.