diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2003-11-20 03:11:18 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@codesourcery.com> | 2003-11-20 03:11:18 +0000 |
commit | fe01a20a70947d1fc586eb0efd0b475a02bdbf26 (patch) | |
tree | fdc2cfccdd23a3da083dacdf42c9f9f6999bff56 | |
parent | dd9d4b48fdbaaa23f7af0acdeb40f0c9fd618de6 (diff) | |
download | gdb-fe01a20a70947d1fc586eb0efd0b475a02bdbf26.zip gdb-fe01a20a70947d1fc586eb0efd0b475a02bdbf26.tar.gz gdb-fe01a20a70947d1fc586eb0efd0b475a02bdbf26.tar.bz2 |
* config/tc-mcore.h: Remove prototypes already in tc.h.
* config/tc-tic4x.c: Likewise.
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/tc-mcore.h | 15 | ||||
-rw-r--r-- | gas/config/tc-tic4x.c | 28 |
3 files changed, 5 insertions, 43 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 5fda8fe..2c5c2db 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,10 @@ 2003-11-19 Kazu Hirata <kazu@cs.umass.edu> + * config/tc-mcore.h: Remove prototypes already in tc.h. + * config/tc-tic4x.c: Likewise. + +2003-11-19 Kazu Hirata <kazu@cs.umass.edu> + * config/tc-arc.c: Remove a local prototype of atof_ieee. * config/tc-ip2k.c: Likewise. * config/tc-iq2000.c: Likewise. diff --git a/gas/config/tc-mcore.h b/gas/config/tc-mcore.h index c727a57..b685a4e 100644 --- a/gas/config/tc-mcore.h +++ b/gas/config/tc-mcore.h @@ -105,22 +105,7 @@ extern bfd_boolean mcore_fix_adjustable PARAMS ((struct fix *)); #include "write.h" /* For definition of fixS */ -extern void md_begin PARAMS ((void)); -extern void md_assemble PARAMS ((char *)); -extern symbolS * md_undefined_symbol PARAMS ((char *)); extern void md_mcore_end PARAMS ((void)); -extern char * md_atof PARAMS ((int, char *, int *)); -extern int md_parse_option PARAMS ((int, char *)); -extern void md_show_usage PARAMS ((FILE *)); -extern void md_create_short_jump - PARAMS ((char *, addressT, addressT, fragS *, symbolS *)); -extern void md_create_long_jump - PARAMS ((char *, addressT, addressT, fragS *, symbolS *)); -extern void md_convert_frag PARAMS ((bfd *, segT, fragS *)); -extern void md_operand PARAMS ((expressionS *)); -extern int md_estimate_size_before_relax PARAMS ((fragS *, segT)); -extern void md_number_to_chars PARAMS ((char *, valueT, int)); -extern valueT md_section_align PARAMS ((segT, valueT)); extern long md_pcrel_from_section PARAMS ((fixS *, segT)); extern arelent * tc_gen_reloc PARAMS ((asection *, fixS *)); diff --git a/gas/config/tc-tic4x.c b/gas/config/tc-tic4x.c index 145700f..6616e18 100644 --- a/gas/config/tc-tic4x.c +++ b/gas/config/tc-tic4x.c @@ -194,8 +194,6 @@ static tic4x_inst_t *tic4x_inst_make PARAMS ((char *, unsigned long, char *)); static int tic4x_inst_add PARAMS ((tic4x_inst_t *)); -void md_begin - PARAMS ((void)); void tic4x_end PARAMS ((void)); static int tic4x_indirect_parse @@ -210,38 +208,12 @@ static void tic4x_insn_output PARAMS ((tic4x_insn_t *)); static int tic4x_operands_parse PARAMS ((char *, tic4x_operand_t *, int )); -void md_assemble - PARAMS ((char *)); void tic4x_cleanup PARAMS ((void)); -char *md_atof - PARAMS ((int, char *, int *)); -void md_apply_fix3 - PARAMS ((fixS *, valueT *, segT )); -void md_convert_frag - PARAMS ((bfd *, segT, fragS *)); -void md_create_short_jump - PARAMS ((char *, addressT, addressT, fragS *, symbolS *)); -void md_create_long_jump - PARAMS ((char *, addressT, addressT, fragS *, symbolS *)); -int md_estimate_size_before_relax - PARAMS ((register fragS *, segT)); -int md_parse_option - PARAMS ((int, char *)); -void md_show_usage - PARAMS ((FILE *)); int tic4x_unrecognized_line PARAMS ((int)); -symbolS *md_undefined_symbol - PARAMS ((char *)); -void md_operand - PARAMS ((expressionS *)); -valueT md_section_align - PARAMS ((segT, valueT)); static int tic4x_pc_offset PARAMS ((unsigned int)); -long md_pcrel_from - PARAMS ((fixS *)); int tic4x_do_align PARAMS ((int, const char *, int, int)); void tic4x_start_line |