diff options
author | Thiemo Seufer <ths@networkno.de> | 2002-05-21 16:21:18 +0000 |
---|---|---|
committer | Thiemo Seufer <ths@networkno.de> | 2002-05-21 16:21:18 +0000 |
commit | 21611032e14f407e8baf21ce190ea2b27c416917 (patch) | |
tree | 72803646a37c3c97281a6315c8eebbf41d36cea2 /binutils | |
parent | 41241523bf023fabf97f1df7b02940347e45cd2f (diff) | |
download | gdb-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')
-rw-r--r-- | binutils/ChangeLog | 5 | ||||
-rw-r--r-- | binutils/objdump.c | 6 |
2 files changed, 10 insertions, 1 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index a4b8bfb..ec724ed 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +2002-05-21 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de> + + * objdump.c (dump_headers): Fix output formatting for ELF32 + architectures in a BFD64 enabled toolchain. + 2002-05-20 Kazu Hirata <kazu@cs.umass.edu> * debug.c: Fix formatting. 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) |