tree-ssa-propagate.c (set_rhs): Fix typo.

* tree-ssa-propagate.c (set_rhs) <GIMPLE_MODIFY_STMT>: Fix typo.

From-SVN: r130459
This commit is contained in:
Eric Botcazou 2007-11-27 01:03:54 +00:00 committed by Eric Botcazou
parent 2688ef18c5
commit aac47cd154
2 changed files with 6 additions and 5 deletions

View File

@ -1,3 +1,7 @@
2007-11-26 Eric Botcazou <ebotcazou@adacore.com>
* tree-ssa-propagate.c (set_rhs) <GIMPLE_MODIFY_STMT>: Fix typo.
2007-11-26 Michael Meissner <michael.meissner@amd.com>
PR target/34077

View File

@ -710,12 +710,9 @@ set_rhs (tree *stmt_p, tree expr)
case GIMPLE_MODIFY_STMT:
op = GIMPLE_STMT_OPERAND (stmt, 1);
if (TREE_CODE (op) == WITH_SIZE_EXPR)
{
stmt = op;
TREE_OPERAND (stmt, 1) = expr;
}
TREE_OPERAND (op, 0) = expr;
else
GIMPLE_STMT_OPERAND (stmt, 1) = expr;
GIMPLE_STMT_OPERAND (stmt, 1) = expr;
break;
case COND_EXPR: