summaryrefslogtreecommitdiff
path: root/gcc/tree-ssa-propagate.c
diff options
context:
space:
mode:
authorJeff Law <law@redhat.com>2005-05-23 20:54:06 -0600
committerJeff Law <law@gcc.gnu.org>2005-05-23 20:54:06 -0600
commit6cedb4acda3240c6a7914834f812aa2e86fa7687 (patch)
tree83e8422ca8c90a302030075b4f2619a0b55f42df /gcc/tree-ssa-propagate.c
parent0d14c01130fe9b1712c0933a30ed14be8c42c469 (diff)
downloadgcc-6cedb4acda3240c6a7914834f812aa2e86fa7687.tar.gz
tree-ssa-dom.c (cprop_into_stmt): Do not call recompute_tree_invariant_for_addr_expr here.
* tree-ssa-dom.c (cprop_into_stmt): Do not call recompute_tree_invariant_for_addr_expr here. (optimize_stmt): Call it here instead and do so if anything at all has changed in the statement and the RHS is an ADDR_EXPR. * tree-ssa-forwprop.c (tidy_after_forward_propagate_addr): If needed, call recompute_tree_invariant_for_addr_expr. * tree-ssa-propagate.c (substitute_and_fold): Call recompute_tree_invariant_for_addr_expr as needed. * gcc.c-torture/compile/pr21638.c: New test. * gcc.c-torture/compile/20050520-1.c: New test. From-SVN: r100092
Diffstat (limited to 'gcc/tree-ssa-propagate.c')
-rw-r--r--gcc/tree-ssa-propagate.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/gcc/tree-ssa-propagate.c b/gcc/tree-ssa-propagate.c
index ee8b1652627..865853df1e1 100644
--- a/gcc/tree-ssa-propagate.c
+++ b/gcc/tree-ssa-propagate.c
@@ -1052,8 +1052,10 @@ substitute_and_fold (prop_value_t *prop_value)
if (did_replace)
{
tree old_stmt = stmt;
+ tree rhs;
+
fold_stmt (bsi_stmt_ptr (i));
- stmt = bsi_stmt(i);
+ stmt = bsi_stmt (i);
/* If we folded a builtin function, we'll likely
need to rename VDEFs. */
@@ -1063,6 +1065,10 @@ substitute_and_fold (prop_value_t *prop_value)
remove EH edges. */
if (maybe_clean_or_replace_eh_stmt (old_stmt, stmt))
tree_purge_dead_eh_edges (bb);
+
+ rhs = get_rhs (stmt);
+ if (TREE_CODE (rhs) == ADDR_EXPR)
+ recompute_tree_invarant_for_addr_expr (rhs);
}
if (dump_file && (dump_flags & TDF_DETAILS))