* mips-dis.c (print_insn_arg): Do not prefix 'P' arguments with '$'.
authorJeff Law <law@redhat.com>
Mon, 23 Feb 1998 17:32:21 +0000 (17:32 +0000)
committerJeff Law <law@redhat.com>
Mon, 23 Feb 1998 17:32:21 +0000 (17:32 +0000)
opcodes/ChangeLog
opcodes/mips-dis.c

index 4536e8c6c435dc9f4e1cb34c06630ffd99421ace..cf5d2a5bf202d2c82f91732eb7f89469e8d2d1b4 100644 (file)
@@ -1,3 +1,7 @@
+Mon Feb 23 10:34:58 1998  Jeffrey A Law  (law@cygnus.com)
+
+       * mips-dis.c (print_insn_arg): Do not prefix 'P' arguments with '$'.
+
 start-sanitize-sky
 Fri Feb 20 18:02:20 1998  Doug Evans  <devans@canuck.cygnus.com>
 
index 517fba1130b68565ee20ee48fafac9411dc917eb..d1d80a5ac4f031ed4d519eb839bc8c3bbbfb6aa9 100644 (file)
@@ -216,7 +216,7 @@ print_insn_arg (d, l, pc, info)
       break;
 
     case 'P':
-      (*info->fprintf_func) (info->stream, "$%d",
+      (*info->fprintf_func) (info->stream, "%d",
                             (l >> OP_SH_PERFREG) & OP_MASK_PERFREG);
       break;
 
@@ -400,7 +400,7 @@ _print_insn_mips (memaddr, word, info)
                  /* start-sanitize-vr5400 */
                  && (target_processor == 5400
                      && op->membership & INSN_5400) == 0
-                 /* end-santiize-vr5400 */
+                 /* end-sanitize-vr5400 */
                  /* start-sanitize-r5900 */
                  && (target_processor == 5900
                      && op->membership & INSN_5900) == 0
This page took 0.030795 seconds and 4 git commands to generate.