mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-22 02:50:08 +08:00
* libcoff-in.h (pe_data_type.in_reloc_p): New.
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
Mon Oct 16 14:43:59 1995 steve chamberlain <sac@slash.cygnus.com>
|
||||||
|
|
||||||
|
* libcoff-in.h (pe_data_type.in_reloc_p): New.
|
||||||
|
|
||||||
Mon Oct 16 10:52:50 1995 Ian Lance Taylor <ian@cygnus.com>
|
Mon Oct 16 10:52:50 1995 Ian Lance Taylor <ian@cygnus.com>
|
||||||
|
|
||||||
* elf32-mips.c (mips_elf_symbol_processing): Set SEC_ALLOC, not
|
* elf32-mips.c (mips_elf_symbol_processing): Set SEC_ALLOC, not
|
||||||
|
@ -93,6 +93,7 @@ typedef struct pe_tdata
|
|||||||
struct internal_extra_pe_aouthdr pe_opthdr;
|
struct internal_extra_pe_aouthdr pe_opthdr;
|
||||||
int dll;
|
int dll;
|
||||||
int has_reloc_section;
|
int has_reloc_section;
|
||||||
|
boolean (*in_reloc_p) PARAMS((bfd *, reloc_howto_type *));
|
||||||
} pe_data_type;
|
} pe_data_type;
|
||||||
|
|
||||||
#define pe_data(bfd) ((bfd)->tdata.pe_obj_data)
|
#define pe_data(bfd) ((bfd)->tdata.pe_obj_data)
|
||||||
@ -116,6 +117,9 @@ struct xcoff_tdata
|
|||||||
/* modtype from optional header. */
|
/* modtype from optional header. */
|
||||||
short modtype;
|
short modtype;
|
||||||
|
|
||||||
|
/* cputype from optional header. */
|
||||||
|
short cputype;
|
||||||
|
|
||||||
/* maxdata from optional header. */
|
/* maxdata from optional header. */
|
||||||
bfd_size_type maxdata;
|
bfd_size_type maxdata;
|
||||||
|
|
||||||
@ -254,6 +258,13 @@ extern void bfd_perform_slip PARAMS ((bfd *abfd, unsigned int slip,
|
|||||||
|
|
||||||
/* Functions in cofflink.c. */
|
/* Functions in cofflink.c. */
|
||||||
|
|
||||||
|
extern struct bfd_hash_entry *_bfd_coff_link_hash_newfunc
|
||||||
|
PARAMS ((struct bfd_hash_entry *, struct bfd_hash_table *, const char *));
|
||||||
|
extern boolean _bfd_coff_link_hash_table_init
|
||||||
|
PARAMS ((struct coff_link_hash_table *, bfd *,
|
||||||
|
struct bfd_hash_entry *(*) (struct bfd_hash_entry *,
|
||||||
|
struct bfd_hash_table *,
|
||||||
|
const char *)));
|
||||||
extern struct bfd_link_hash_table *_bfd_coff_link_hash_table_create
|
extern struct bfd_link_hash_table *_bfd_coff_link_hash_table_create
|
||||||
PARAMS ((bfd *));
|
PARAMS ((bfd *));
|
||||||
extern const char *_bfd_coff_internal_syment_name
|
extern const char *_bfd_coff_internal_syment_name
|
||||||
|
Reference in New Issue
Block a user