aboutsummaryrefslogtreecommitdiff
path: root/gdb/mips-pinsn.c
diff options
context:
space:
mode:
authorJohn Gilmore <gnu@cygnus>1991-07-09 02:08:13 +0000
committerJohn Gilmore <gnu@cygnus>1991-07-09 02:08:13 +0000
commitb8c50f0918ce5a6612d84aa08a6fc2a8fb4f274a (patch)
tree26b8c84e0f3e804cbcd6158a5031059a80081289 /gdb/mips-pinsn.c
parent2d413945c93f5e78b337d543882526e55f0e744e (diff)
downloadgdb-b8c50f0918ce5a6612d84aa08a6fc2a8fb4f274a.zip
gdb-b8c50f0918ce5a6612d84aa08a6fc2a8fb4f274a.tar.gz
gdb-b8c50f0918ce5a6612d84aa08a6fc2a8fb4f274a.tar.bz2
* core.c (memory_error): Reword error msg to mislead less.
* mips-pinsn.c (print_insn_arg 'd'): Print $ with reg name. * mipsread.c (read_mips_symtab, read_the_mips_symtab, parse_partial_symbols): Use newer BFD internals (external_filehdr and external_aouthdr), byte-swap the fields that we care about before using them, and make the file header data local to read_the_mips_symtab rather than global.
Diffstat (limited to 'gdb/mips-pinsn.c')
-rw-r--r--gdb/mips-pinsn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/mips-pinsn.c b/gdb/mips-pinsn.c
index 82781e3..6dc3e55 100644
--- a/gdb/mips-pinsn.c
+++ b/gdb/mips-pinsn.c
@@ -78,7 +78,7 @@ print_insn_arg (d, l, stream, pc)
break;
case 'd':
- fprintf (stream, "%s", reg_names[((struct op_r_fmt *) l)->rd]);
+ fprintf (stream, "$%s", reg_names[((struct op_r_fmt *) l)->rd]);
break;
case 'h':