diff options
author | Jeff Law <law@redhat.com> | 2005-05-18 10:49:49 -0600 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 2005-05-18 10:49:49 -0600 |
commit | 472945f6d292c19eaf74b153311a935b362f097b (patch) | |
tree | 4887c3d9b25e73017920c2b4fc1c76a1056c4897 /gcc/tree-ssa-forwprop.c | |
parent | 33a9ae4927a417391c01773efa091e748ed5c4d0 (diff) | |
download | gcc-472945f6d292c19eaf74b153311a935b362f097b.zip gcc-472945f6d292c19eaf74b153311a935b362f097b.tar.gz gcc-472945f6d292c19eaf74b153311a935b362f097b.tar.bz2 |
tree-ssa-forwprop.c (forward_propagate_addr_expr): Do not propagate an ADDR_EXPR if the definition and use sites are in different...
* tree-ssa-forwprop.c (forward_propagate_addr_expr): Do not
propagate an ADDR_EXPR if the definition and use sites are
in different EH regions.
From-SVN: r99906
Diffstat (limited to 'gcc/tree-ssa-forwprop.c')
-rw-r--r-- | gcc/tree-ssa-forwprop.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/tree-ssa-forwprop.c b/gcc/tree-ssa-forwprop.c index fb3dcaf..f65df57 100644 --- a/gcc/tree-ssa-forwprop.c +++ b/gcc/tree-ssa-forwprop.c @@ -537,6 +537,11 @@ forward_propagate_addr_expr (tree stmt) if (bb_for_stmt (use_stmt)->loop_depth > stmt_loop_depth) return false; + /* If the two statements belong to different EH regions, then there + is nothing we can or should try to do. */ + if (lookup_stmt_eh_region (use_stmt) != lookup_stmt_eh_region (stmt)) + return false; + /* Strip away any outer COMPONENT_REF/ARRAY_REF nodes from the LHS. */ lhs = TREE_OPERAND (use_stmt, 0); while (TREE_CODE (lhs) == COMPONENT_REF || TREE_CODE (lhs) == ARRAY_REF) |