aboutsummaryrefslogtreecommitdiff
path: root/binutils/objdump.c
diff options
context:
space:
mode:
authorThiemo Seufer <ths@networkno.de>2002-05-21 16:21:18 +0000
committerThiemo Seufer <ths@networkno.de>2002-05-21 16:21:18 +0000
commit21611032e14f407e8baf21ce190ea2b27c416917 (patch)
tree72803646a37c3c97281a6315c8eebbf41d36cea2 /binutils/objdump.c
parent41241523bf023fabf97f1df7b02940347e45cd2f (diff)
downloadgdb-21611032e14f407e8baf21ce190ea2b27c416917.zip
gdb-21611032e14f407e8baf21ce190ea2b27c416917.tar.gz
gdb-21611032e14f407e8baf21ce190ea2b27c416917.tar.bz2
* objdump.c (dump_headers): Fix output formatting for ELF32
architectures in a BFD64 enabled toolchain. * bfd/bfd.c (bfd_get_arch_size): Remove bfd_set_error call for non-ELF targets.
Diffstat (limited to 'binutils/objdump.c')
-rw-r--r--binutils/objdump.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/binutils/objdump.c b/binutils/objdump.c
index 535e0cd..715d1cb 100644
--- a/binutils/objdump.c
+++ b/binutils/objdump.c
@@ -361,7 +361,11 @@ dump_headers (abfd)
#ifndef BFD64
printf (_("Idx Name Size VMA LMA File off Algn"));
#else
- printf (_("Idx Name Size VMA LMA File off Algn"));
+ /* With BFD64, non-ELF returns -1 and wants always 64 bit addresses. */
+ if (bfd_get_arch_size (abfd) == 32)
+ printf (_("Idx Name Size VMA LMA File off Algn"));
+ else
+ printf (_("Idx Name Size VMA LMA File off Algn"));
#endif
if (wide_output)