summaryrefslogtreecommitdiff
path: root/bfd
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2005-04-15 11:47:47 +0000
committerNick Clifton <nickc@redhat.com>2005-04-15 11:47:47 +0000
commit7c093258f13e36a99a5527ccb777c17e35f43a8b (patch)
tree368a0e1bda591e746dd8fe20c9d3fe428c14e1e0 /bfd
parent35e587ec04b42821a947cb22eeca5d6791cefe3d (diff)
downloadgdb-7c093258f13e36a99a5527ccb777c17e35f43a8b.tar.gz
Use fprintf_vma to print vma values.
Diffstat (limited to 'bfd')
-rw-r--r--bfd/ChangeLog5
-rw-r--r--bfd/coffgen.c28
2 files changed, 11 insertions, 22 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 84405e1c396..35ac02d4b82 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,8 @@
+2005-04-15 Nick Clifton <nickc@redhat.com>
+
+ * coffgen.c (coff_print_symbol): Use fprintf_vma to print vma
+ values.
+
2005-04-15 Alan Modra <amodra@bigpond.net.au>
PR ld/815
diff --git a/bfd/coffgen.c b/bfd/coffgen.c
index d303beceb98..b60a96fccfc 100644
--- a/bfd/coffgen.c
+++ b/bfd/coffgen.c
@@ -1895,28 +1895,14 @@ coff_print_symbol (bfd *abfd,
else
val = combined->u.syment.n_value - (unsigned long) root;
-#ifndef XCOFF64
- fprintf (file,
- "(sec %2d)(fl 0x%02x)(ty %3x)(scl %3d) (nx %d) 0x%08lx %s",
+ fprintf (file, "(sec %2d)(fl 0x%02x)(ty %3x)(scl %3d) (nx %d)",
combined->u.syment.n_scnum,
combined->u.syment.n_flags,
combined->u.syment.n_type,
combined->u.syment.n_sclass,
- combined->u.syment.n_numaux,
- (unsigned long) val,
- symbol->name);
-#else
- /* Print out the wide, 64 bit, symbol value. */
- fprintf (file,
- "(sec %2d)(fl 0x%02x)(ty %3x)(scl %3d) (nx %d) 0x%016llx %s",
- combined->u.syment.n_scnum,
- combined->u.syment.n_flags,
- combined->u.syment.n_type,
- combined->u.syment.n_sclass,
- combined->u.syment.n_numaux,
- val,
- symbol->name);
-#endif
+ combined->u.syment.n_numaux);
+ fprintf_vma (file, val);
+ fprintf (file, " %s", symbol->name);
for (aux = 0; aux < combined->u.syment.n_numaux; aux++)
{
@@ -1995,10 +1981,8 @@ coff_print_symbol (bfd *abfd,
l++;
while (l->line_number)
{
- fprintf (file, "\n%4d : 0x%lx",
- l->line_number,
- ((unsigned long)
- (l->u.offset + symbol->section->vma)));
+ fprintf (file, "\n%4d : ", l->line_number);
+ fprintf_vma (file, l->u.offset + symbol->section->vma);
l++;
}
}