diff options
author | Jeff Law <law@redhat.com> | 2004-12-27 23:34:55 -0700 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 2004-12-27 23:34:55 -0700 |
commit | 685c2171c1b55fdac1bd276c54d9bea41d872373 (patch) | |
tree | 89813ab795808911800079fa9ce04037cfed2baa /gcc/tree-ssa-dom.c | |
parent | 5fc94ac4ba15c3ff5d66b71ae5204fd22cbefd38 (diff) | |
download | gcc-685c2171c1b55fdac1bd276c54d9bea41d872373.zip gcc-685c2171c1b55fdac1bd276c54d9bea41d872373.tar.gz gcc-685c2171c1b55fdac1bd276c54d9bea41d872373.tar.bz2 |
tree-ssa-dom.c (thread_across_edge): Remove broken code to avoid threading into a loop.
* tree-ssa-dom.c (thread_across_edge): Remove broken code to
avoid threading into a loop.
From-SVN: r92666
Diffstat (limited to 'gcc/tree-ssa-dom.c')
-rw-r--r-- | gcc/tree-ssa-dom.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/gcc/tree-ssa-dom.c b/gcc/tree-ssa-dom.c index 81fdb0e..67446b1 100644 --- a/gcc/tree-ssa-dom.c +++ b/gcc/tree-ssa-dom.c @@ -686,22 +686,6 @@ thread_across_edge (struct dom_walk_data *walk_data, edge e) || TREE_CODE (stmt) == SWITCH_EXPR)) { tree cond, cached_lhs; - edge e1; - edge_iterator ei; - - /* Do not forward entry edges into the loop. In the case loop - has multiple entry edges we may end up in constructing irreducible - region. - ??? We may consider forwarding the edges in the case all incoming - edges forward to the same destination block. */ - if (!e->flags & EDGE_DFS_BACK) - { - FOR_EACH_EDGE (e1, ei, e->dest->preds) - if (e1->flags & EDGE_DFS_BACK) - break; - if (e1) - return; - } /* Now temporarily cprop the operands and try to find the resulting expression in the hash tables. */ |