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 /bfd/targets.c | |
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 'bfd/targets.c')
-rw-r--r-- | bfd/targets.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bfd/targets.c b/bfd/targets.c index e3357c5..bcb5715 100644 --- a/bfd/targets.c +++ b/bfd/targets.c @@ -475,7 +475,8 @@ BFD_JUMP_TABLE macros. . (bfd *, struct bfd_symbol **); . {* Create synthetized symbols. *} . long (*_bfd_get_synthetic_symtab) -. (bfd *, struct bfd_symbol **, struct bfd_symbol **); +. (bfd *, long, struct bfd_symbol **, long, struct bfd_symbol **, +. struct bfd_symbol **); . {* Get the amount of memory required to hold the dynamic relocs. *} . long (*_bfd_get_dynamic_reloc_upper_bound) (bfd *); . {* Read in the dynamic relocs. *} |