* mips-dis.c (print_insn_arg): Do not prefix 'P' arguments with '$'.

This commit is contained in:
Jeff Law 1998-02-23 17:32:21 +00:00
parent 59ef7c27fb
commit fb1a826b06
2 changed files with 6 additions and 2 deletions

View 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>

View 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