Commit 3d36fb45 by Kazu Hirata Committed by Kazu Hirata

re PR tree-optimization/20936 (tree check: accessed operand 2 of view_convert_expr with 1 operands)

	PR tree-optimization/20936.
	* tree-ssa-ccp.c (visit_assignment): Fix a typo.

From-SVN: r98183
parent 0bdcd332
2005-04-15 Kazu Hirata <kazu@cs.umass.edu>
PR tree-optimization/20936.
* tree-ssa-ccp.c (visit_assignment): Fix a typo.
2005-04-15 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
* doc/invoke.texi: Fix typos.
......
......@@ -1071,7 +1071,7 @@ visit_assignment (tree stmt, tree *output_p)
TREE_TYPE (TREE_OPERAND (orig_lhs, 0)),
val.value));
orig_lhs = TREE_OPERAND (orig_lhs, 1);
orig_lhs = TREE_OPERAND (orig_lhs, 0);
if (w && is_gimple_min_invariant (w))
val.value = w;
else
......
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