Commit bc4632d4 by Marcin Dalecki Committed by Marcin Dalecki

tree-ssa-dom.c (dom_thread_across_edge): fix tag expression construction.

2006-02-15  Marcin Dalecki <martin@dalecki.de>

	* tree-ssa-dom.c (dom_thread_across_edge): fix tag expression
	construction.

From-SVN: r111019
parent dd8d6dfe
2006-02-15 Marcin Dalecki <martin@dalecki.de>
* tree-ssa-dom.c (dom_thread_across_edge): fix tag expression
construction.
2006-02-14 Zdenek Dvorak <dvorakz@suse.cz>
PR tree-optimization/26209
......
......@@ -596,7 +596,7 @@ dom_thread_across_edge (struct dom_walk_data *walk_data, edge e)
/* If we don't already have a dummy condition, build it now. */
if (! walk_data->global_data)
{
tree dummy_cond = build2 (NE, boolean_type_node,
tree dummy_cond = build2 (NE_EXPR, boolean_type_node,
integer_zero_node, integer_zero_node);
dummy_cond = build3 (COND_EXPR, void_type_node, dummy_cond, NULL, NULL);
walk_data->global_data = dummy_cond;
......
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