diff options
author | Daniel Jacobowitz <drow@false.org> | 2002-09-18 02:39:43 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2002-09-18 02:39:43 +0000 |
commit | 1f70368c21a866f7379c02da316ae0e2f355d610 (patch) | |
tree | 9f66ae0f8d9e0754cc634684f5dd1c6f8bebe48c /bfd/bfd-in.h | |
parent | ed6fb7bdf57feb3050b00774d383e945434b6813 (diff) | |
download | gdb-1f70368c21a866f7379c02da316ae0e2f355d610.zip gdb-1f70368c21a866f7379c02da316ae0e2f355d610.tar.gz gdb-1f70368c21a866f7379c02da316ae0e2f355d610.tar.bz2 |
* bfd-in.h (bfd_get_dynamic_symcount): Define.
* bfd.c (struct _bfd): Add dynsymcount.
* bfd-in2.h: Regenerated.
* elf.c (_bfd_elf_canonicalize_dynamic_symtab): Set
abfd->dynsymcount.
* elfcode.h (elf_slurp_reloc_table_from_section): Check
for overflow.
Diffstat (limited to 'bfd/bfd-in.h')
-rw-r--r-- | bfd/bfd-in.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bfd/bfd-in.h b/bfd/bfd-in.h index 3941906..f30e20d 100644 --- a/bfd/bfd-in.h +++ b/bfd/bfd-in.h @@ -529,6 +529,8 @@ extern void warn_deprecated #define bfd_get_outsymbols(abfd) ((abfd)->outsymbols) #define bfd_count_sections(abfd) ((abfd)->section_count) +#define bfd_get_dynamic_symcount(abfd) ((abfd)->dynsymcount) + #define bfd_get_symbol_leading_char(abfd) ((abfd)->xvec->symbol_leading_char) #define bfd_set_cacheable(abfd,bool) (((abfd)->cacheable = (boolean) (bool)), true) |