summaryrefslogtreecommitdiff
path: root/gcc/tree-ssa-threadedge.c
diff options
context:
space:
mode:
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>2012-10-24 00:43:24 +0000
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>2012-10-24 00:43:24 +0000
commit36d5e6eace0697b2f8613ab5c24bc23ea359d347 (patch)
tree55682cd381304199632a2aa6061f805d16bac430 /gcc/tree-ssa-threadedge.c
parent2aefa11ab804458f8c133bd3e3e3bc05e34e229c (diff)
downloadgcc-36d5e6eace0697b2f8613ab5c24bc23ea359d347.tar.gz
* tree-ssa-threadedge.c (thread_across_edge): Remove unused
parameter in call to cond_arg_set_in_bb. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@192754 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-ssa-threadedge.c')
-rw-r--r--gcc/tree-ssa-threadedge.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/tree-ssa-threadedge.c b/gcc/tree-ssa-threadedge.c
index 4669f6572f9..6249e2f54c6 100644
--- a/gcc/tree-ssa-threadedge.c
+++ b/gcc/tree-ssa-threadedge.c
@@ -743,7 +743,7 @@ thread_across_edge (gimple dummy_cond,
safe to thread this edge. */
if (e->flags & EDGE_DFS_BACK)
{
- if (cond_arg_set_in_bb (e, e->dest, 1))
+ if (cond_arg_set_in_bb (e, e->dest))
goto fail;
}
@@ -787,7 +787,7 @@ thread_across_edge (gimple dummy_cond,
of threading without having to re-run DOM or VRP. */
if (dest
&& ((e->flags & EDGE_DFS_BACK) == 0
- || ! cond_arg_set_in_bb (taken_edge, e->dest, 2)))
+ || ! cond_arg_set_in_bb (taken_edge, e->dest)))
{
/* We don't want to thread back to a block we have already
visited. This may be overly conservative. */
@@ -846,7 +846,7 @@ thread_across_edge (gimple dummy_cond,
do
{
if ((e->flags & EDGE_DFS_BACK) == 0
- || ! cond_arg_set_in_bb (e3, e->dest, 3))
+ || ! cond_arg_set_in_bb (e3, e->dest))
e2 = thread_around_empty_block (e3,
dummy_cond,
handle_dominating_asserts,