aboutsummaryrefslogtreecommitdiff
path: root/bfd/simple.c
AgeCommit message (Collapse)AuthorFilesLines
2003-11-30 * ChangeLog: Fix typos.Kazu Hirata1-1/+1
* ecoff.c: Fix comment typos. * ecofflink.c: Likewise. * format.c: Likewise. * hp300hpux.c: Likewise. * i386linux.c: Likewise. * ieee.c: Likewise. * m68klinux.c: Likewise. * mach-o.h: Likewise. * mipsbsd.c: Likewise. * oasys.c: Likewise. * opncls.c: Likewise. * peXXigen.c: Likewise. * reloc.c: Likewise. * reloc16.c: Likewise. * section.c: Likewise. * simple.c: Likewise. * som.c: Likewise. * som.h: Likewise. * sparclinux.c: Likewise. * srec.c: Likewise. * syms.c: Likewise. * targets.c: Likewise. * tekhex.c: Likewise. * versados.c: Likewise. * vms-gsd.c: Likewise. * vms-hdr.c: Likewise. * vms-misc.c: Likewise. * xcofflink.c: Likewise. * xsym.h: Likewise. * bfd-in2.h: Regenerate.
2003-09-23 * simple.c (bfd_simple_get_relocated_section_contents): Free theAlan Modra1-1/+1
hash table using _bfd_generic_link_hash_table_free.
2003-09-18 * simple.c (bfd_simple_get_relocated_section_contents): UseAndreas Schwab1-1/+1
_bfd_generic_link_hash_table_create instead of bfd_link_hash_table_create.
2003-08-17 * simple.c (bfd_simple_get_relocated_section_contents): MoveHans-Peter Nilsson1-12/+26
reloc_done hack to before first bfd_section_size call. Change all returns to use new wrapper macro RETURN, restoring sec->reloc_done.
2003-06-29Convert to C90 and a few tweaks.Alan Modra1-80/+45
2003-06-05 * simple.c (bfd_simple_get_relocated_section_contents): CallDaniel Jacobowitz1-1/+1
_bfd_generic_link_add_symbols instead of bfd_link_add_symbols.
2003-04-06(bfd_simple_get_relocated_section_contents): Disable free that leads to GDBNick Clifton1-0/+11
vs BFD memory corruption.
2003-04-01 * simple.c (bfd_simple_get_relocated_section_contents): AddDaniel Jacobowitz1-12/+80
parameter symbol_table. Optionally use it instead of the symbol table from the bfd. Save and restore output offsets and output sections around bfd_get_relocated_section_contents. Fix a memory leak. (simple_save_output_info, simple_restore_output_info): New functions. * bfd-in2.h: Regenerate. * dwarf2.c (read_abbrevs): Use bfd_simple_get_relocated_section_contents instead of bfd_get_section_contents. (decode_line_info): Likewise. (_bfd_dwarf2_find_nearest_line): Likewise. Don't call find_rela_addend. (find_rela_addend): Remove. * elfxx-ia64.c (elfNN_ia64_reloc): Weaken sanity check for debugging sections. (elfNN_ia64_hash_table_create): Create the hash table with malloc, not bfd_zalloc.
2003-03-31Fix memory leaksNick Clifton1-3/+4
2002-11-30s/boolean/bfd_boolean/ s/true/TRUE/ s/false/FALSE/. SimplifyAlan Modra1-17/+17
comparisons of bfd_boolean vars with TRUE/FALSE. Formatting.
2002-11-07Use bfd_simple_get_relocated_section_contents() instead of ↵Nick Clifton1-0/+15
bfd_get_section_contents().
2002-10-25 * simple.c: Correct placement of ATTRIBUTE_UNUSED.Hans-Peter Nilsson1-47/+37
2002-10-25Files missed in previous commit.Dave Anglin1-31/+70
2002-10-11 * Makefile.am: Run dep-am.Daniel Jacobowitz1-0/+168
(BFD32_LIBS): Add simple.lo. (BFD32_LIBS_CFILES): Add simple.c. * Makefile.in: Regenerated. * bfd-in2.h: Regenerated. * simple.c: New file.