Commit aac47cd1 by Eric Botcazou Committed by Eric Botcazou

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

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

From-SVN: r130459
parent 2688ef18
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
......@@ -710,10 +710,7 @@ 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;
break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment