diff options
author | Ian Lance Taylor <ian@airs.com> | 1999-09-07 03:40:32 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1999-09-07 03:40:32 +0000 |
commit | d575e71e8255fe733687ba583cb801161b7d66c8 (patch) | |
tree | 9914f5ce58a8732de5afcc5c1291db6180d53e4a /bfd/libcoff-in.h | |
parent | 1d8bea879cab393d95d6260e0a88b7cc16704e05 (diff) | |
download | gdb-d575e71e8255fe733687ba583cb801161b7d66c8.tar.gz |
1999-09-06 Donn Terry <donn@interix.com>
* libcoff-in.h (struct pei_section_tdata): Add pe_flags field.
* coffcode.h (coff_set_alignment_hook): Set pe_flags field if
COFF_WITH_PE.
* libcoff.h: Rebuild.
Diffstat (limited to 'bfd/libcoff-in.h')
-rw-r--r-- | bfd/libcoff-in.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bfd/libcoff-in.h b/bfd/libcoff-in.h index 790eeb0342b..9b1a0268487 100644 --- a/bfd/libcoff-in.h +++ b/bfd/libcoff-in.h @@ -216,12 +216,14 @@ struct xcoff_section_tdata #define xcoff_section_data(abfd, sec) \ ((struct xcoff_section_tdata *) coff_section_data ((abfd), (sec))->tdata) -/* Tdata for sections in PEI image files. */ +/* Tdata for sections in PE files. */ struct pei_section_tdata { /* The virtual size of the section. */ bfd_size_type virt_size; + /* The PE section flags. */ + long pe_flags; }; /* An accessor macro for the pei_section_tdata structure. */ |