summaryrefslogtreecommitdiff
path: root/gcc/tree-ssa-dom.c
diff options
context:
space:
mode:
authordalecki <dalecki@138bc75d-0d04-0410-961f-82ee72b054a4>2006-02-15 07:58:22 +0000
committerdalecki <dalecki@138bc75d-0d04-0410-961f-82ee72b054a4>2006-02-15 07:58:22 +0000
commit15348a37ae1808663e1cf7bf164e9e61b969f2e4 (patch)
tree76122f23e48af8a6d5000649d1377960298c90d1 /gcc/tree-ssa-dom.c
parentebe48f5e2c13dc4bc7ca1a3dddb723da74a7830e (diff)
downloadgcc-15348a37ae1808663e1cf7bf164e9e61b969f2e4.tar.gz
2006-02-15 Marcin Dalecki <martin@dalecki.de>
* tree-ssa-dom.c (dom_thread_across_edge): fix tag expression construction. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@111019 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-ssa-dom.c')
-rw-r--r--gcc/tree-ssa-dom.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-ssa-dom.c b/gcc/tree-ssa-dom.c
index 371e53bb182..4802572388d 100644
--- a/gcc/tree-ssa-dom.c
+++ b/gcc/tree-ssa-dom.c
@@ -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;