diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-03-13 15:58:31 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-03-13 15:58:31 +0000 |
commit | d931305e795bfba310e1f220f645ab811659ce84 (patch) | |
tree | c2c2c53a55d7a97dc44c9965e3a02390b8c134ca /gcc/tree-ssa-phiopt.c | |
parent | 7532009b7582285c364c1f9253e92a7b6233a8c6 (diff) | |
download | gcc-d931305e795bfba310e1f220f645ab811659ce84.tar.gz |
* tree-ssa-phiopt.c (value_replacement): Remove local variable
result.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@96376 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-ssa-phiopt.c')
-rw-r--r-- | gcc/tree-ssa-phiopt.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gcc/tree-ssa-phiopt.c b/gcc/tree-ssa-phiopt.c index 42e3bde8281..6943c1732c1 100644 --- a/gcc/tree-ssa-phiopt.c +++ b/gcc/tree-ssa-phiopt.c @@ -415,7 +415,6 @@ value_replacement (basic_block cond_bb, basic_block middle_bb, basic_block phi_bb, edge e0, edge e1, tree phi, tree arg0, tree arg1) { - tree result; tree cond; edge true_edge, false_edge; @@ -428,7 +427,6 @@ value_replacement (basic_block cond_bb, basic_block middle_bb, return false; cond = COND_EXPR_COND (last_stmt (cond_bb)); - result = PHI_RESULT (phi); /* This transformation is only valid for equality comparisons. */ if (TREE_CODE (cond) != NE_EXPR && TREE_CODE (cond) != EQ_EXPR) |