diff options
author | Nick Clifton <nickc@redhat.com> | 2001-09-27 09:58:01 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2001-09-27 09:58:01 +0000 |
commit | 2c20dfb248ecdc877b275de75cf7f6704864c4de (patch) | |
tree | b75d062733e7e283e54d585448e6b4cd807982f0 /gas | |
parent | 63b0f74538005db4e3cfbd90bffb55ff870587f1 (diff) | |
download | binutils-2c20dfb248ecdc877b275de75cf7f6704864c4de.zip binutils-2c20dfb248ecdc877b275de75cf7f6704864c4de.tar.gz binutils-2c20dfb248ecdc877b275de75cf7f6704864c4de.tar.bz2 |
Add missing function protoypes.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 4 | ||||
-rw-r--r-- | gas/config/tc-arm.c | 5 |
2 files changed, 8 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 7315f38..1718bc1 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -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 diff --git a/gas/config/tc-arm.c b/gas/config/tc-arm.c index ab4f291..1cb3611 100644 --- a/gas/config/tc-arm.c +++ b/gas/config/tc-arm.c @@ -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 |