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
This commit is contained in:
Marcin Dalecki 2006-02-15 08:58:22 +01:00 committed by Marcin Dalecki
parent dd8d6dfe79
commit bc4632d404
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
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

View File

@ -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;