* bfd.h: Updated for BFD_RELOC_MIPS_GPREL and bfd_[gs]et_gp_size

prototypes.
This commit is contained in:
Ian Lance Taylor 1993-04-01 01:52:47 +00:00
parent 2d8e0f624d
commit 285a08ad73
2 changed files with 14 additions and 0 deletions

View file

@ -1,3 +1,8 @@
Wed Mar 31 17:51:42 1993 Ian Lance Taylor (ian@cygnus.com)
* bfd.h: Updated for BFD_RELOC_MIPS_GPREL and bfd_[gs]et_gp_size
prototypes.
Wed Mar 31 16:35:12 1993 Stu Grossman (grossman@cygnus.com)
* dis-asm.h: (disassemble_info): Fix typo in prototype of

View file

@ -1010,6 +1010,9 @@ typedef enum bfd_reloc_code_real
/* Low 16 bits. */
BFD_RELOC_LO16,
/* 16 bit relocation relative to the global pointer. */
BFD_RELOC_MIPS_GPREL,
/* this must be the highest numeric value */
BFD_RELOC_UNUSED
} bfd_reloc_code_real_type;
@ -1313,6 +1316,12 @@ bfd_get_mtime PARAMS ((bfd *));
long
bfd_get_size PARAMS ((bfd *));
int
bfd_get_gp_size PARAMS ((bfd *));
void
bfd_set_gp_size PARAMS ((bfd *, int));
#define bfd_sizeof_headers(abfd, reloc) \
BFD_SEND (abfd, _bfd_sizeof_headers, (abfd, reloc))