mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-23 19:50:13 +08:00
* coff-alpha.c (reloc_nil): Add forward declaration, add missing
error_message argument. * coff-sparc.c (bfd_coff_generic_reloc): Add forward declaration, add missing error_message argument. * mipsbsd.c (mips_fix_hi16_s): Add forward declaration, add missing error_message argument.
This commit is contained in:
@ -1,3 +1,12 @@
|
|||||||
|
Sat Feb 19 03:17:32 1994 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
|
||||||
|
|
||||||
|
* coff-alpha.c (reloc_nil): Add forward declaration, add missing
|
||||||
|
error_message argument.
|
||||||
|
* coff-sparc.c (bfd_coff_generic_reloc): Add forward declaration,
|
||||||
|
add missing error_message argument.
|
||||||
|
* mipsbsd.c (mips_fix_hi16_s): Add forward declaration, add missing
|
||||||
|
error_message argument.
|
||||||
|
|
||||||
Fri Feb 18 11:41:58 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
|
Fri Feb 18 11:41:58 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
|
||||||
|
|
||||||
start-sanitize-powerpc-netware
|
start-sanitize-powerpc-netware
|
||||||
|
@ -112,13 +112,18 @@ static boolean alpha_relocate_section PARAMS ((bfd *, struct bfd_link_info *,
|
|||||||
/* How to process the various reloc types. */
|
/* How to process the various reloc types. */
|
||||||
|
|
||||||
static bfd_reloc_status_type
|
static bfd_reloc_status_type
|
||||||
reloc_nil (abfd, reloc, sym, data, sec, output_bfd)
|
reloc_nil PARAMS ((bfd *, arelent *, asymbol *, PTR,
|
||||||
|
asection *, bfd *, char **));
|
||||||
|
|
||||||
|
static bfd_reloc_status_type
|
||||||
|
reloc_nil (abfd, reloc, sym, data, sec, output_bfd, error_message)
|
||||||
bfd *abfd;
|
bfd *abfd;
|
||||||
arelent *reloc;
|
arelent *reloc;
|
||||||
asymbol *sym;
|
asymbol *sym;
|
||||||
PTR data;
|
PTR data;
|
||||||
asection *sec;
|
asection *sec;
|
||||||
bfd *output_bfd;
|
bfd *output_bfd;
|
||||||
|
char **error_message;
|
||||||
{
|
{
|
||||||
return bfd_reloc_ok;
|
return bfd_reloc_ok;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user