From: Christian Würdig Date: Tue, 13 Mar 2007 16:38:25 +0000 (+0000) Subject: fixed comment X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=30e4d5fd4dd8a0bc112192dfca32b5e5fdf454e3;p=libfirm fixed comment fixed options initializer removed unused code --- diff --git a/ir/be/bemain.c b/ir/be/bemain.c index 50ad73f70..63ad971b7 100644 --- a/ir/be/bemain.c +++ b/ir/be/bemain.c @@ -70,11 +70,12 @@ static be_options_t be_options = { BE_TIME_OFF, /* no timing */ 0, /* no opt profile */ 1, /* try to omit frame pointer */ - 0, /* always stabs debugging output */ + 0, /* no stabs debugging output */ BE_VRFY_WARN, /* verification level: warn */ BE_SCHED_LIST, /* scheduler: list scheduler */ "i44pc52.info.uni-karlsruhe.de", /* ilp server */ - "cplex" /* ilp solver */ + "cplex", /* ilp solver */ + "", /* filename for statistic output */ }; /* config file. */ @@ -535,8 +536,6 @@ 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); break; #endif /* WITH_ILP */ };