Commit 9f919563 by Richard Guenther Committed by Richard Biener

tree-vect-transform.c (vectorizable_call): Fix leftover of TREE_OPERAND to…

tree-vect-transform.c (vectorizable_call): Fix leftover of TREE_OPERAND to GIMPLE_STMT_OPERAND conversion.

2006-12-07  Richard Guenther  <rguenther@suse.de>

	* tree-vect-transform.c (vectorizable_call): Fix leftover of
	TREE_OPERAND to GIMPLE_STMT_OPERAND conversion.

From-SVN: r119612
parent 18154730
2006-12-07 Richard Guenther <rguenther@suse.de>
* tree-vect-transform.c (vectorizable_call): Fix leftover of
TREE_OPERAND to GIMPLE_STMT_OPERAND conversion.
2006-12-06 Aldy Hernandez <aldyh@redhat.com>
PR/30079
......
......@@ -1714,7 +1714,7 @@ vectorizable_call (tree stmt, block_stmt_iterator *bsi, tree *vec_stmt)
to the new definition. So just replace rhs of the statement with something
harmless. */
type = TREE_TYPE (scalar_dest);
TREE_OPERAND (stmt, 1) = fold_convert (type, integer_zero_node);
GIMPLE_STMT_OPERAND (stmt, 1) = fold_convert (type, integer_zero_node);
return true;
}
......
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