From: Ian Lance Taylor Date: Wed, 24 Jun 1998 23:08:26 +0000 (+0000) Subject: * subsegs.h (segment_info_type): Give the struct a name. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=35111bf8a7a2294ad0fd84699ed83fe1188dba8a;p=binutils-gdb.git * subsegs.h (segment_info_type): Give the struct a name. * config/tc-h8300.h (tc_reloc_mangle): Add prototype. * config/tc-h8500.h (tc_reloc_mangle): Declare. * config/tc-sh.h (sh_coff_reloc_mangle): Add prototype. * config/tc-w65.h (tc_reloc_mangle): Declare. * config/tc-z8k.h (tc_reloc_mangle): Declare. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 7d95127d251..4e314c465fa 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,12 @@ +Wed Jun 24 19:06:04 1998 Ian Lance Taylor + + * subsegs.h (segment_info_type): Give the struct a name. + * config/tc-h8300.h (tc_reloc_mangle): Add prototype. + * config/tc-h8500.h (tc_reloc_mangle): Declare. + * config/tc-sh.h (sh_coff_reloc_mangle): Add prototype. + * config/tc-w65.h (tc_reloc_mangle): Declare. + * config/tc-z8k.h (tc_reloc_mangle): Declare. + Wed Jun 24 13:45:00 1998 Catherine Moore * config/tc-v850.c (v850_comm): Restore old section diff --git a/gas/config/tc-h8500.h b/gas/config/tc-h8500.h index d5c2ffe5416..2a53ec35ce2 100644 --- a/gas/config/tc-h8500.h +++ b/gas/config/tc-h8500.h @@ -23,6 +23,10 @@ #define TARGET_BYTES_BIG_ENDIAN 1 +#if ANSI_PROTOTYPES +struct internal_reloc; +#endif + #define WORKING_DOT_WORD /* This macro translates between an internal fix and an coff reloc type */ @@ -34,6 +38,8 @@ #define IGNORE_NONSTANDARD_ESCAPES #define TC_RELOC_MANGLE(s,a,b,c) tc_reloc_mangle(a,b,c) +extern void tc_reloc_mangle + PARAMS ((struct fix *, struct internal_reloc *, bfd_vma)); #define DO_NOT_STRIP 0 #define LISTING_HEADER "Hitachi H8/500 GAS " diff --git a/gas/config/tc-w65.h b/gas/config/tc-w65.h index 63213760226..9794ad2eb5c 100644 --- a/gas/config/tc-w65.h +++ b/gas/config/tc-w65.h @@ -23,6 +23,10 @@ #define TARGET_BYTES_BIG_ENDIAN 0 +#if ANSI_PROTOTYPES +struct internal_reloc; +#endif + #define WORKING_DOT_WORD /* This macro translates between an internal fix and an coff reloc type */ @@ -34,6 +38,8 @@ #define IGNORE_NONSTANDARD_ESCAPES #define TC_RELOC_MANGLE(s,a,b,c) tc_reloc_mangle(a,b,c) +extern void tc_reloc_mangle + PARAMS ((struct fix *, struct internal_reloc *, bfd_vma)); #define DO_NOT_STRIP 0 #define LISTING_HEADER "W65816 GAS "