diff options
author | rakdver <rakdver@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-05-17 20:28:30 +0000 |
---|---|---|
committer | rakdver <rakdver@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-05-17 20:28:30 +0000 |
commit | 10fec8206407ff88fc7c07e09dcc8fea94eaa101 (patch) | |
tree | 67bc73975832051c0cb714b9f0601f6188091223 /gcc/tree-scalar-evolution.h | |
parent | 012935045e8956d605ab5060190d51bff6d60424 (diff) | |
download | gcc-10fec8206407ff88fc7c07e09dcc8fea94eaa101.tar.gz |
* timevar.def (TV_SCEV_CONST): New timevar.
* tree-optimize.c (init_tree_optimization_passes): Add
pass_scev_cprop.
* tree-pass.h (pass_scev_cprop): Declare.
* tree-scalar-evolution.c (scev_const_prop): New function.
* tree-scalar-evolution.h (scev_const_prop): Declare.
* tree-ssa-loop.c (gate_scev_const_prop, pass_scev_cprop):
New.
* tree-cfg.c (replace_uses_by): Export.
* tree-flow.h (replace_uses_by): Declare.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@99860 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-scalar-evolution.h')
-rw-r--r-- | gcc/tree-scalar-evolution.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/tree-scalar-evolution.h b/gcc/tree-scalar-evolution.h index 7aa5f54e243..cfb3a39ae58 100644 --- a/gcc/tree-scalar-evolution.h +++ b/gcc/tree-scalar-evolution.h @@ -33,5 +33,6 @@ extern tree instantiate_parameters (struct loop *, tree); extern void gather_stats_on_scev_database (void); extern void scev_analysis (void); extern bool simple_iv (struct loop *, tree, tree, tree *, tree *, bool); +void scev_const_prop (void); #endif /* GCC_TREE_SCALAR_EVOLUTION_H */ |