From fb1a826b067d4cfc279a90a90c2cb39a6bec12cc Mon Sep 17 00:00:00 2001 From: Jeff Law Date: Mon, 23 Feb 1998 17:32:21 +0000 Subject: [PATCH] * mips-dis.c (print_insn_arg): Do not prefix 'P' arguments with '$'. --- opcodes/ChangeLog | 4 ++++ opcodes/mips-dis.c | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 4536e8c..cf5d2a5 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -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 diff --git a/opcodes/mips-dis.c b/opcodes/mips-dis.c index 517fba1..d1d80a5 100644 --- a/opcodes/mips-dis.c +++ b/opcodes/mips-dis.c @@ -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 -- 2.7.4