enqueue users of Bad as well in optimize_graph_df
authorMatthias Braun <matze@braunis.de>
Fri, 29 Apr 2011 16:34:28 +0000 (18:34 +0200)
committerMatthias Braun <matze@braunis.de>
Mon, 2 May 2011 09:34:00 +0000 (11:34 +0200)
ir/ir/irgopt.c

index de85ed1..fc27fb5 100644 (file)
@@ -214,8 +214,7 @@ int optimize_graph_df(ir_graph *irg)
        /* finish the wait queue */
        while (! pdeq_empty(waitq)) {
                ir_node *n = (ir_node*)pdeq_getl(waitq);
-               if (! is_Bad(n))
-                       opt_walker(n, waitq);
+               opt_walker(n, waitq);
        }
 
        del_pdeq(waitq);