diff options
author | Andrew Cagney <cagney@redhat.com> | 2000-07-11 07:56:23 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2000-07-11 07:56:23 +0000 |
commit | d730266bb0c67c82fd60fd1998bdcba2e1b5bb1c (patch) | |
tree | 6663e90ee8dd5b3f0269bfaf52cc3fb8dffcea18 /gdb | |
parent | 6d9019e4c003d8676c973ce8f6d65807f5ce8120 (diff) | |
download | gdb-d730266bb0c67c82fd60fd1998bdcba2e1b5bb1c.zip gdb-d730266bb0c67c82fd60fd1998bdcba2e1b5bb1c.tar.gz gdb-d730266bb0c67c82fd60fd1998bdcba2e1b5bb1c.tar.bz2 |
* symtab.c: Use paddr_nz() to print addresses.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/symtab.c | 5 |
2 files changed, 6 insertions, 3 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index fb767fd..738ed61 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +Tue Jul 11 17:50:31 2000 Andrew Cagney <cagney@b1.cygnus.com> + + * symtab.c: Use paddr_nz() to print addresses. + Tue Jul 11 12:52:31 2000 Andrew Cagney <cagney@b1.cygnus.com> * value.h (read_register, read_signed_register): Change return diff --git a/gdb/symtab.c b/gdb/symtab.c index fd9c150..4e15cbc 100644 --- a/gdb/symtab.c +++ b/gdb/symtab.c @@ -1472,10 +1472,9 @@ find_pc_sect_symtab (pc, section) /* Might want to error() here (in case symtab is corrupt and will cause a core dump), but maybe we can successfully continue, so let's not. */ - /* FIXME-32x64: assumes pc fits in a long */ warning ("\ -(Internal error: pc 0x%lx in read in psymtab, but not in symtab.)\n", - (unsigned long) pc); +(Internal error: pc 0x%s in read in psymtab, but not in symtab.)\n", + paddr_nz (pc)); s = PSYMTAB_TO_SYMTAB (ps); } return (s); |