summaryrefslogtreecommitdiff
path: root/gcc/tree-complex.c
diff options
context:
space:
mode:
authordberlin <dberlin@138bc75d-0d04-0410-961f-82ee72b054a4>2006-06-19 14:33:46 +0000
committerdberlin <dberlin@138bc75d-0d04-0410-961f-82ee72b054a4>2006-06-19 14:33:46 +0000
commit714d1260bf076cdc22a60de82ab667216ec3ebce (patch)
treef7538558f1fde777988a78b4c1ca0c7d6194fb01 /gcc/tree-complex.c
parent8eaf21c5ad0316f8dd1ad269056c2aab80b31f1b (diff)
downloadgcc-714d1260bf076cdc22a60de82ab667216ec3ebce.tar.gz
2006-06-19 Daniel Berlin <dberlin@dberlin.org>
Fix PR tree-optimization/27341 * tree-cfg.c (gimplify_val): Call mark_new_vars_to_rename on the statement we get. * tree-complex.c (pass_lower_complex): Update SMT usage. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@114771 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-complex.c')
-rw-r--r--gcc/tree-complex.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/gcc/tree-complex.c b/gcc/tree-complex.c
index 0a5040ebfcd..f841844f88e 100644
--- a/gcc/tree-complex.c
+++ b/gcc/tree-complex.c
@@ -1541,11 +1541,12 @@ struct tree_opt_pass pass_lower_complex =
0, /* tv_id */
PROP_ssa, /* properties_required */
0, /* properties_provided */
- 0, /* properties_destroyed */
+ PROP_smt_usage, /* properties_destroyed */
0, /* todo_flags_start */
TODO_dump_func | TODO_ggc_collect
- | TODO_update_ssa
- | TODO_verify_stmts, /* todo_flags_finish */
+ | TODO_update_smt_usage
+ | TODO_update_ssa
+ | TODO_verify_stmts, /* todo_flags_finish */
0 /* letter */
};