diff options
author | Alan Modra <amodra@gmail.com> | 2004-08-28 03:05:18 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2004-08-28 03:05:18 +0000 |
commit | c9727e01b54c4b1913366933a2f32c7a6a03da7f (patch) | |
tree | c760fd32252388b9f7648ca1a8bfcb47535577f4 /binutils | |
parent | 0756fc55061311d060c72c9e9b8535b1668d2c84 (diff) | |
download | gdb-c9727e01b54c4b1913366933a2f32c7a6a03da7f.zip gdb-c9727e01b54c4b1913366933a2f32c7a6a03da7f.tar.gz gdb-c9727e01b54c4b1913366933a2f32c7a6a03da7f.tar.bz2 |
bfd/
* bfd.c (bfd_get_synthetic_symtab): Pass counts and both symbol tables.
* elf-bfd.h (_bfd_elf_get_synthetic_symtab): Adjust.
* elf.c (_bfd_elf_get_synthetic_symtab): Adjust.
* libbfd-in.h (_bfd_nodynamic_get_synthetic_symtab): Adjust.
* targets.c (struct bfd_target <_bfd_get_synthetic_symtab>): Adjust.
* elf64-ppc.c (ppc64_elf_get_synthetic_symtab): Don't read symbols.
Use both symbol tables on non-relocatable objects. Use a common
error exit. Fix "mid" warning.
* libbfd.h: Regenerate.
* bfd-in2.h: Regenerate.
binutils/
* objdump.c (dump_bfd): Pass both symbol tables to
bfd_get_synthetic_symtab.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 5 | ||||
-rw-r--r-- | binutils/objdump.c | 16 |
2 files changed, 9 insertions, 12 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 958a26a..5b87074 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +2004-08-28 Alan Modra <amodra@bigpond.net.au> + + * objdump.c (dump_bfd): Pass both symbol tables to + bfd_get_synthetic_symtab. + 2004-08-17 Jakub Jelinek <jakub@redhat.com> * objdump.c (dump_bfd): For relocatable objects, pass syms instead diff --git a/binutils/objdump.c b/binutils/objdump.c index af04b70..e56bf36 100644 --- a/binutils/objdump.c +++ b/binutils/objdump.c @@ -2566,18 +2566,10 @@ dump_bfd (bfd *abfd) dynsyms = slurp_dynamic_symtab (abfd); if (disassemble) { - synthcount = 0; - if (bfd_get_file_flags (abfd) & (DYNAMIC | EXEC_P)) - { - if (dynsymcount > 0) - synthcount = bfd_get_synthetic_symtab (abfd, dynsyms, &synthsyms); - } - else - { - if (symcount > 0) - synthcount = bfd_get_synthetic_symtab (abfd, syms, &synthsyms); - } - if (synthcount < 0) synthcount = 0; + synthcount = bfd_get_synthetic_symtab (abfd, symcount, syms, + dynsymcount, dynsyms, &synthsyms); + if (synthcount < 0) + synthcount = 0; } if (dump_symtab) |