From: Christian Würdig Date: Mon, 4 Dec 2006 15:58:39 +0000 (+0000) Subject: removed warning for ILP scheduler, as the scheduler can now schedule on it's own X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=505e4b0f5056fdc1553842e138c23572172ce565;p=libfirm removed warning for ILP scheduler, as the scheduler can now schedule on it's own --- diff --git a/ir/be/bemain.c b/ir/be/bemain.c index ed7592435..4b109caed 100644 --- a/ir/be/bemain.c +++ b/ir/be/bemain.c @@ -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 */ };