aboutsummaryrefslogtreecommitdiff
path: root/opcodes
diff options
context:
space:
mode:
authorJeff Law <law@redhat.com>1998-02-23 17:32:21 +0000
committerJeff Law <law@redhat.com>1998-02-23 17:32:21 +0000
commitfb1a826b067d4cfc279a90a90c2cb39a6bec12cc (patch)
tree8a26bd8d865cfc2a7c704bb42649dffe7cb2c441 /opcodes
parent59ef7c27fb9d517a6ac52210da6faa74f219712a (diff)
downloadgdb-fb1a826b067d4cfc279a90a90c2cb39a6bec12cc.zip
gdb-fb1a826b067d4cfc279a90a90c2cb39a6bec12cc.tar.gz
gdb-fb1a826b067d4cfc279a90a90c2cb39a6bec12cc.tar.bz2
* mips-dis.c (print_insn_arg): Do not prefix 'P' arguments with '$'.
Diffstat (limited to 'opcodes')
-rw-r--r--opcodes/ChangeLog4
-rw-r--r--opcodes/mips-dis.c4
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 <devans@canuck.cygnus.com>
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