From 9fdaf3417cec46e420650629406f492af15b071b Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Fri, 29 Feb 2008 12:26:33 +0000 Subject: [PATCH] use waitq_empty() instead of pdeq_empty() [r17934] --- ir/be/bedomfront.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ir/be/bedomfront.c b/ir/be/bedomfront.c index ddd3e1aa7..65886a95a 100644 --- a/ir/be/bedomfront.c +++ b/ir/be/bedomfront.c @@ -155,7 +155,7 @@ void be_get_iterated_dominance_frontiers(const be_dom_front_info_t *domfronts, waitq_put(worklist, block); } - while(! pdeq_empty(worklist)) { + while(! waitq_empty(worklist)) { int i; ir_node *block = waitq_get(worklist); ir_node **domfront = be_get_dominance_frontier(domfronts, block); -- 2.20.1