diff options
author | spop <spop@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-12-16 20:05:18 +0000 |
---|---|---|
committer | spop <spop@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-12-16 20:05:18 +0000 |
commit | d081c1c0db2962bea309cd31a62a83b5eaba213f (patch) | |
tree | 59801caa5e3967ccbe5f97664b8393fb7a52a4ce /gcc/graphite-clast-to-gimple.c | |
parent | 0596fc07d788ad7baa5aad8354176d42a0192a9f (diff) | |
download | gcc-d081c1c0db2962bea309cd31a62a83b5eaba213f.tar.gz |
Fix PR46404: call scev_reset to reset the number of iterations as well.
2010-12-16 Sebastian Pop <sebastian.pop@amd.com>
PR tree-optimization/46404
* graphite-clast-to-gimple.c (gloog): Call scev_reset.
* gcc.dg/graphite/pr46404-1.c: New.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@167954 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/graphite-clast-to-gimple.c')
-rw-r--r-- | gcc/graphite-clast-to-gimple.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/graphite-clast-to-gimple.c b/gcc/graphite-clast-to-gimple.c index 4894b522e93..eef5ad16abd 100644 --- a/gcc/graphite-clast-to-gimple.c +++ b/gcc/graphite-clast-to-gimple.c @@ -1555,7 +1555,7 @@ gloog (scop_p scop, htab_t bb_pbb_mapping) &newivs, newivs_index, bb_pbb_mapping, 1, params_index); graphite_verify (); - scev_reset_htab (); + scev_reset (); recompute_all_dominators (); graphite_verify (); |