summaryrefslogtreecommitdiff
path: root/gcc/tree-complex.c
diff options
context:
space:
mode:
authorDaniel Berlin <dberlin@dberlin.org>2006-06-19 14:33:46 +0000
committerDaniel Berlin <dberlin@gcc.gnu.org>2006-06-19 14:33:46 +0000
commit46b86adcdc8bdf4f49df1b52de41eefd9a1afd60 (patch)
treef7538558f1fde777988a78b4c1ca0c7d6194fb01 /gcc/tree-complex.c
parent4307d0dbf9a4ad8923df89e857bbe09a8b5edc20 (diff)
downloadgcc-46b86adcdc8bdf4f49df1b52de41eefd9a1afd60.tar.gz
re PR tree-optimization/27341 (ICE in in add_virtual_operand with complex types)
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. From-SVN: r114771
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 */
};