diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 1999-10-29 17:51:38 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 1999-10-29 17:51:38 +0000 |
commit | a8f227e703c969f41a6d40dac7114a35636101c3 (patch) | |
tree | 2131b6dd763359d6381fa3af3e5706e629a02568 /gcc/gcse.c | |
parent | 90e0ee005bfecbf04c27b4cde749fd465aa40753 (diff) | |
download | gcc-a8f227e703c969f41a6d40dac7114a35636101c3.zip gcc-a8f227e703c969f41a6d40dac7114a35636101c3.tar.gz gcc-a8f227e703c969f41a6d40dac7114a35636101c3.tar.bz2 |
flow.c (debug_flow_info): Add prototype.
* flow.c (debug_flow_info): Add prototype.
* gcc.c (main): Likewise.
* gcse.c (expr_reaches_here_p_work, pre_expr_reaches_here_p_work):
Likewise.
* reload1.c (failed_reload, set_reload_reg): Likewise.
* mips-tfile.c (main): Likewise.
(pfatal_with_name, fancy_abort, botch, fatal, catch_signal): Mark
with ATTRIBUTE_NORETURN.
From-SVN: r30262
Diffstat (limited to 'gcc/gcse.c')
-rw-r--r-- | gcc/gcse.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -624,6 +624,8 @@ static int one_classic_gcse_pass PROTO ((int)); static void invalidate_nonnull_info PROTO ((rtx, rtx, void *)); static rtx process_insert_insn PROTO ((struct expr *)); static int pre_edge_insert PROTO ((struct edge_list *, struct expr **)); +static int expr_reaches_here_p_work PROTO ((struct occr *, struct expr *, int, int, char *)); +static int pre_expr_reaches_here_p_work PROTO ((int, struct expr *, int, int, char *)); /* Entry point for global common subexpression elimination. F is the first instruction in the function. */ |