remove irsimpletype stuff (unused/broken)
[libfirm] / ir / be / belistsched.c
index 1d4f971..4b04d64 100644 (file)
@@ -439,11 +439,6 @@ static void list_sched_block(ir_node *block, void *env_ptr)
                if (code == iro_End) {
                        /* Skip the end node because of keep-alive edges. */
                        continue;
-               } else if (code == iro_Block) {
-                       /* A Block-Block edge. This should be the MacroBlock
-                        * edge, ignore it. */
-                       assert(get_Block_MacroBlock(irn) == block && "Block-Block edge found");
-                       continue;
                }
 
                users = get_irn_n_edges(irn);
@@ -458,8 +453,8 @@ static void list_sched_block(ir_node *block, void *env_ptr)
 
                if (is_Phi(irn)) {
                        /*
-                               Phi functions are scheduled immediately, since they     only
-                               transfer data flow from the predecessors to this block.
+                          Phi functions are scheduled immediately, since they only
+                          transfer data flow from the predecessors to this block.
                        */
                        add_to_sched(&be, irn);
                } else if (be_is_Start(irn)) {