diff options
author | spop <spop@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-03-31 18:37:13 +0000 |
---|---|---|
committer | spop <spop@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-03-31 18:37:13 +0000 |
commit | 0207206d3e2a17cd35d050b9197c575b531d29f4 (patch) | |
tree | 031cf7376f126a24b28052c5fb0f4f308cc6b474 /gcc/tree-flow.h | |
parent | a751953f79681163e7ed60a2a5bc3b12c1c91171 (diff) | |
download | gcc-0207206d3e2a17cd35d050b9197c575b531d29f4.tar.gz |
canonicalize_loop_ivs should add the IV bump in loop->header.
2010-03-16 Sebastian Pop <sebastian.pop@amd.com>
* graphite-sese-to-poly.c (graphite_loop_normal_form): Add the IV bump
in loop->header.
* tree-flow.h (canonicalize_loop_ivs): Updated declaration.
* tree-parloops.c (gen_parallel_loop): Add the IV bump in loop->latch.
* tree-ssa-loop-manip.c (canonicalize_loop_ivs): Add a new parameter
to switch between adding the IV bump in loop->latch or in loop->header.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@157885 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-flow.h')
-rw-r--r-- | gcc/tree-flow.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-flow.h b/gcc/tree-flow.h index e39658a78fb..032ecaa04dd 100644 --- a/gcc/tree-flow.h +++ b/gcc/tree-flow.h @@ -694,7 +694,7 @@ unsigned int tree_unroll_loops_completely (bool, bool); unsigned int tree_ssa_prefetch_arrays (void); void tree_ssa_iv_optimize (void); unsigned tree_predictive_commoning (void); -tree canonicalize_loop_ivs (struct loop *, tree *); +tree canonicalize_loop_ivs (struct loop *, tree *, bool); bool parallelize_loops (void); bool loop_only_exit_p (const struct loop *, const_edge); |