Add missing function protoypes.

This commit is contained in:
Nick Clifton 2001-09-27 09:58:01 +00:00
parent 63b0f74538
commit 2c20dfb248
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2001-09-27 Nick Clifton <nickc@cambridge.redhat.com>
* config/tc-arm.c: Add missing prototypes.
2001-09-26 Jeff Johnston <jjohnstn@redhat.com>
* input-file.c (input_file_open): When reading the

View File

@ -590,7 +590,6 @@ static void do_branch PARAMS ((char *, unsigned long));
static void do_swi PARAMS ((char *, unsigned long));
/* Pseudo Op codes. */
static void do_adr PARAMS ((char *, unsigned long));
static void do_adrl PARAMS ((char *, unsigned long));
static void do_nop PARAMS ((char *, unsigned long));
/* ARM 2. */
static void do_mul PARAMS ((char *, unsigned long));
@ -679,6 +678,10 @@ static void set_constant_flonums PARAMS ((void));
static valueT md_chars_to_number PARAMS ((char *, int));
static void insert_reg_alias PARAMS ((char *, int));
static void output_inst PARAMS ((void));
static int accum0_required_here PARAMS ((char **));
static int ld_mode_required_here PARAMS ((char **));
static void do_branch25 PARAMS ((char *, unsigned long));
static symbolS * find_real_start PARAMS ((symbolS *));
#ifdef OBJ_ELF
static bfd_reloc_code_real_type arm_parse_reloc PARAMS ((void));
#endif