diff options
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 790eeb0..9b1a026 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. */ |