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 | 8d3ad4e16f2b7ab875747b5363abfa89ce87096c (patch) | |
tree | 8ea82632d4ea7ee78342ca37bc11fb99fd0f726e /bfd/libcoff.h | |
parent | 25bcc51d8f60fcd875d25877ea5caeaeab49681d (diff) | |
download | gdb-8d3ad4e16f2b7ab875747b5363abfa89ce87096c.zip gdb-8d3ad4e16f2b7ab875747b5363abfa89ce87096c.tar.gz gdb-8d3ad4e16f2b7ab875747b5363abfa89ce87096c.tar.bz2 |
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.h')
-rw-r--r-- | bfd/libcoff.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bfd/libcoff.h b/bfd/libcoff.h index ffa06bf..0bad48b 100644 --- a/bfd/libcoff.h +++ b/bfd/libcoff.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. */ |