removed warning for ILP scheduler, as the scheduler can now schedule on it's own
authorChristian Würdig <chriswue@ipd.info.uni-karlsruhe.de>
Mon, 4 Dec 2006 15:58:39 +0000 (15:58 +0000)
committerChristian Würdig <chriswue@ipd.info.uni-karlsruhe.de>
Mon, 4 Dec 2006 15:58:39 +0000 (15:58 +0000)
ir/be/bemain.c

index ed75924..4b109ca 100644 (file)
@@ -599,8 +599,8 @@ static void be_main_loop(FILE *file_handle, const char *cup_name)
 #ifdef WITH_ILP
                        case BE_SCHED_ILP:
                                be_ilp_sched(birg);
-                               fprintf(stderr, "Warning: ILP scheduler not yet fully implemented, falling back to list scheduler.\n");
-                               list_sched(birg, &be_options);
+                               //fprintf(stderr, "Warning: ILP scheduler not yet fully implemented, falling back to list scheduler.\n");
+                               //list_sched(birg, &be_options);
                                break;
 #endif /* WITH_ILP */
                };