remove morgan spiller, it's unused and the coming bespill changes won't support morga...
[libfirm] / ir / be / beutil.c
index a600ab7..c196ff7 100644 (file)
@@ -128,7 +128,9 @@ void dump_allocated_irg(arch_env_t *arch_env, ir_graph *irg, char *suffix)
  */
 static int sched_edge_hook(FILE *F, ir_node *irn)
 {
-       if(sched_is_scheduled(irn) && sched_has_prev(irn)) {
+       if (is_Proj(irn))
+               return 1;
+       if (sched_is_scheduled(irn) && sched_has_prev(irn)) {
                ir_node *prev = sched_prev(irn);
                fprintf(F, "edge:{sourcename:\"");
                PRINT_NODEID(irn);