diff options
author | Ian Lance Taylor <ian@airs.com> | 1999-07-24 03:16:50 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1999-07-24 03:16:50 +0000 |
commit | 3f18bf53f6f3910e3ccec25fcb1acf27e6afd7ef (patch) | |
tree | 0771c8111fcc71ffe5a13beca9d52d93c3dec6bf /bfd/libcoff-in.h | |
parent | 8f22cf1e6910a17be6f0266b836b526f98f88192 (diff) | |
download | gdb-3f18bf53f6f3910e3ccec25fcb1acf27e6afd7ef.tar.gz |
1999-07-23 Donn Terry <donn@interix.com>
* libcoff-in.h (coff_link_hash_entry): Add coff_link_hash_flags
field, and define COFF_LINK_HASH_PE_SECTION_SYMBOL.
* cofflink.c (coff_link_add_symbols): If PE, handle section
symbols specially.
* libcoff.h: Rebuild.
Diffstat (limited to 'bfd/libcoff-in.h')
-rw-r--r-- | bfd/libcoff-in.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bfd/libcoff-in.h b/bfd/libcoff-in.h index 0dc2121c981..dae881f288c 100644 --- a/bfd/libcoff-in.h +++ b/bfd/libcoff-in.h @@ -249,6 +249,11 @@ struct coff_link_hash_entry /* Pointer to array of auxiliary entries, if any. */ union internal_auxent *aux; + + /* Flag word; legal values follow. */ + unsigned short coff_link_hash_flags; + /* Symbol is a PE section symbol. */ +#define COFF_LINK_HASH_PE_SECTION_SYMBOL (01) }; /* COFF linker hash table. */ |