mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 22:11:30 +08:00
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:
parent
dd8d6dfe79
commit
bc4632d404
@ -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
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user