aboutsummaryrefslogtreecommitdiff
path: root/gdb/core.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/core.c
parent2d413945c93f5e78b337d543882526e55f0e744e (diff)
downloadbinutils-b8c50f0918ce5a6612d84aa08a6fc2a8fb4f274a.zip
binutils-b8c50f0918ce5a6612d84aa08a6fc2a8fb4f274a.tar.gz
binutils-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/core.c')
-rw-r--r--gdb/core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/core.c b/gdb/core.c
index a452e23..3a6a071 100644
--- a/gdb/core.c
+++ b/gdb/core.c
@@ -275,7 +275,7 @@ memory_error (status, memaddr)
{
/* Actually, address between memaddr and memaddr + len
was out of bounds. */
- error ("Cannot access memory: address 0x%x out of bounds.", memaddr);
+ error ("Cannot access memory at address 0x%x.", memaddr);
}
else
{