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> 2007-11-26 Michael Meissner <michael.meissner@amd.com>
PR target/34077 PR target/34077
...@@ -710,12 +710,9 @@ set_rhs (tree *stmt_p, tree expr) ...@@ -710,12 +710,9 @@ set_rhs (tree *stmt_p, tree expr)
case GIMPLE_MODIFY_STMT: case GIMPLE_MODIFY_STMT:
op = GIMPLE_STMT_OPERAND (stmt, 1); op = GIMPLE_STMT_OPERAND (stmt, 1);
if (TREE_CODE (op) == WITH_SIZE_EXPR) if (TREE_CODE (op) == WITH_SIZE_EXPR)
{ TREE_OPERAND (op, 0) = expr;
stmt = op;
TREE_OPERAND (stmt, 1) = expr;
}
else else
GIMPLE_STMT_OPERAND (stmt, 1) = expr; GIMPLE_STMT_OPERAND (stmt, 1) = expr;
break; break;
case COND_EXPR: case COND_EXPR:
......
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