diff options
author | Ian Lance Taylor <ian@airs.com> | 1996-05-14 00:25:50 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1996-05-14 00:25:50 +0000 |
commit | efb33f6b0724ff4bf615ae49a749de0aae8ee7df (patch) | |
tree | 308fd02f60c18f824b9f64e0e3abcb838011a9d1 | |
parent | 24ecc17a04e024af7a9a2385f255e59e28b91536 (diff) | |
download | gdb-efb33f6b0724ff4bf615ae49a749de0aae8ee7df.zip gdb-efb33f6b0724ff4bf615ae49a749de0aae8ee7df.tar.gz gdb-efb33f6b0724ff4bf615ae49a749de0aae8ee7df.tar.bz2 |
* libcoff-in.h (struct pei_section_tdata): Define structure.
(pei_section_data): Define macro.
* libcoff.h: Rebuild.
* coffcode.h (coff_set_alignment_hook): If COFF_IMAGE_WITH_PE,
store s_paddr field in pei_section_data.
(coff_compute_section_file_positions): Use pei_section_data rather
than _cooked_size, and don't overwrite an existing value.
(coff_write_object_contents): If COFF_OBJ_WITH_PE, set s_paddr to
0. If COFF_IMAGE_WITH_PE, set s_paddr to pei_section_data.
* peicode.h (coff_bfd_copy_private_section_data): Define if
COFF_IMAGE_WITH_PE.
(pe_bfd_copy_private_section_data): New static function if
COFF_IMAGE_WITH_PE.
PR 9667.
-rw-r--r-- | bfd/ChangeLog | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 2093704..b323811 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,19 @@ +Mon May 13 19:51:37 1996 Ian Lance Taylor <ian@cygnus.com> + + * libcoff-in.h (struct pei_section_tdata): Define structure. + (pei_section_data): Define macro. + * libcoff.h: Rebuild. + * coffcode.h (coff_set_alignment_hook): If COFF_IMAGE_WITH_PE, + store s_paddr field in pei_section_data. + (coff_compute_section_file_positions): Use pei_section_data rather + than _cooked_size, and don't overwrite an existing value. + (coff_write_object_contents): If COFF_OBJ_WITH_PE, set s_paddr to + 0. If COFF_IMAGE_WITH_PE, set s_paddr to pei_section_data. + * peicode.h (coff_bfd_copy_private_section_data): Define if + COFF_IMAGE_WITH_PE. + (pe_bfd_copy_private_section_data): New static function if + COFF_IMAGE_WITH_PE. + Wed May 8 16:10:38 1996 Ian Lance Taylor <ian@cygnus.com> * srec.c (srec_set_arch_mach): Write as a function rather than a |