diff options
-rw-r--r-- | gas/ChangeLog | 31 | ||||
-rw-r--r-- | gas/config/tc-m88k.c | 1 | ||||
-rw-r--r-- | gas/config/tc-mips.c | 1 | ||||
-rw-r--r-- | gas/gasp.c | 5 | ||||
-rw-r--r-- | gas/read.c | 1 |
5 files changed, 38 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 3b0390a..d851a3d 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,34 @@ +Tue Mar 18 15:50:13 1997 H.J. Lu <hjl@lucon.org> + + * Many files: Add function prototypes. + * as.c (show_usage, parse_args): Make static. + * frags.h (frag_alloc): Declare. + * subsegs.c (subseg_set_rest): Don't declare frag_alloc. + * symbols.c (dollar_label_instance): Change return type to long. + * symbols.h (print_symbol_value): Declare. + (print_expr, print_expr_1, print_symbol_value_1): Declare. + * write.c (fix_new_exp): Don't declare make_expr_symbol. + (remove_subsegs, relax_frag): Make static. + * config/atof-vax.c (atof_vax_sizeof): Change letter to int. + (what_kind_of_float): Likewise. + (atof_vax): Make static. Change what_kind to int. + (md_atof): Change what_statement_type to int. + * config/obj-ecoff.h (obj_ecoff_set_ext): Declare. + * config/tc-alpha.c (vax_md_atof): Declare. + (md_atof): Don't declare atof_ieee and vax_md_atof. + * config/tc-i386.c (set_16bit_code_flag): Make static. + * config/tc-i386.h (tc_i386_fix_adjustable): Declare. + * config/tc-m68k.c (add_fix): Change width to int. + (insert_reg): Change regname to const. + (md_atof): Don't declare atof_ieee. + (demand_empty_rest_of_line): Don't declare. + * config/tc-m88k.c (md_atof): Don't declare atof_ieee. + * config/tc-sparc.c (cmp_reg_entry): Change args to const PTR. + (parse_keyword_arg): Change lookup_fn to take const arg. + (md_atof): Don't declare atof_ieee. + * config/tc-sparc.h: Add ifdef for multiple inclusion. + (tc_aout_pre_write_hook): Don't declare. + Mon Mar 17 11:21:09 1997 Ian Lance Taylor <ian@cygnus.com> * as.h (bfd_alloc_by_size_t): Don't declare. diff --git a/gas/config/tc-m88k.c b/gas/config/tc-m88k.c index ae55fed..c593656 100644 --- a/gas/config/tc-m88k.c +++ b/gas/config/tc-m88k.c @@ -1074,7 +1074,6 @@ md_atof (type, litP, sizeP) LITTLENUM_TYPE words[MAX_LITTLENUMS]; LITTLENUM_TYPE *wordP; char *t; - char *atof_ieee (); switch (type) { diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c index ee4515b..650122a 100644 --- a/gas/config/tc-mips.c +++ b/gas/config/tc-mips.c @@ -46,6 +46,7 @@ #ifdef OBJ_MAYBE_ELF /* Clean up namespace so we can include obj-elf.h too. */ +static int mips_output_flavor PARAMS ((void)); static int mips_output_flavor () { return OUTPUT_FLAVOR; } #undef OBJ_PROCESS_STAB #undef OUTPUT_FLAVOR @@ -70,6 +70,11 @@ extern char *malloc (); char *program_version = "1.2"; +/* This is normally declared in as.h, but we don't include that. We + need the function because other files linked with gasp.c might call + it. */ +extern void as_abort PARAMS ((const char *, int, const char *)); + #define MAX_INCLUDES 30 /* Maximum include depth */ #define MAX_REASONABLE 1000 /* Maximum number of expansions */ @@ -199,6 +199,7 @@ symbolS *mri_common_symbol; may be needed. */ static int mri_pending_align; +static void cons_worker PARAMS ((int, int)); static int scrub_from_string PARAMS ((char **)); static void do_align PARAMS ((int, char *, int, int)); static void s_align PARAMS ((int, int)); |