diff options
author | Jeffrey A Law <law@cygnus.com> | 1998-04-17 07:39:23 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-04-17 01:39:23 -0600 |
commit | ac546323230fbdd32298e3886b37d5039a0df145 (patch) | |
tree | 24939c6c3714ec4d59e00b84b8000e223e40c823 /gcc | |
parent | 2fcdec5719041a38cb6e9e4dd91115388896dd5b (diff) | |
download | gcc-ac546323230fbdd32298e3886b37d5039a0df145.zip gcc-ac546323230fbdd32298e3886b37d5039a0df145.tar.gz gcc-ac546323230fbdd32298e3886b37d5039a0df145.tar.bz2 |
Forgot to check in last night.
From-SVN: r19257
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 21 | ||||
-rw-r--r-- | gcc/recog.c | 2 |
2 files changed, 23 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3bad8fd..c49b4e4 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,26 @@ Thu Apr 16 22:41:02 1998 Jeffrey A Law (law@cygnus.com) + * varasm.c (asm_output_bss): Add prototype. + (asm_output_aligned_bss): Likewise. + + * unroll.c (verify_addresses): Add prototype. + + * toplev.c: Add many prototypes. Too many to mention here. + + * stmt.c (check_seenlabel): Add prototype. + + * rtlanal.c (reg_set_p_1): Add prototype. + (reg_set_last_1): Likewise. + + * reorg.c (find_dead_or_set_registers): Add prototype. + + * regmove (try_auto_increment): Add prototype. + + * reg-stack.c (pop_stack): Add prototype. + + * recog.c (validate_replace_rtx_1): Add prototype. + (find_cosntant_term_loc): Likewise. + * loop.c (regs_patch_p): Add prototype. (add_label_notes, count_nonfixed_reads): Likewise. (find_single_use_in_loop): Likewise. diff --git a/gcc/recog.c b/gcc/recog.c index ad9dff2..fb284cd 100644 --- a/gcc/recog.c +++ b/gcc/recog.c @@ -43,7 +43,9 @@ Boston, MA 02111-1307, USA. */ /* Import from final.c: */ extern rtx alter_subreg (); +static void validate_replace_rtx_1 PROTO((rtx *, rtx, rtx, rtx)); static rtx *find_single_use_1 PROTO((rtx, rtx *)); +static rtx *find_constant_term_loc PROTO((rtx *)); /* Nonzero means allow operands to be volatile. This should be 0 if you are generating rtl, such as if you are calling |