use waitq_empty() instead of pdeq_empty()
authorMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Fri, 29 Feb 2008 12:26:33 +0000 (12:26 +0000)
committerMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Fri, 29 Feb 2008 12:26:33 +0000 (12:26 +0000)
[r17934]

ir/be/bedomfront.c

index ddd3e1a..65886a9 100644 (file)
@@ -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);