From: Michael Beck Date: Sun, 6 Jan 2008 16:36:54 +0000 (+0000) Subject: opt_funccall() now takes an additional parameter X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=9ab2c86c55bbc18bd0512b34de0326d82fc447f1;p=cparser opt_funccall() now takes an additional parameter [r18841] --- diff --git a/driver/firm_opt.c b/driver/firm_opt.c index 080df67..803b2f8 100644 --- a/driver/firm_opt.c +++ b/driver/firm_opt.c @@ -338,7 +338,7 @@ static void do_firm_optimizations(const char *input_filename, int firm_const_exi if (firm_opt.func_calls) { timer_push(TV_REAL_FUNC_CALL); - optimize_funccalls(firm_const_exists); + optimize_funccalls(firm_const_exists, NULL); timer_pop(); DUMP_ALL_C(firm_dump.ir_graph && firm_dump.all_phases, "func_call"); CHECK_ALL(firm_opt.check_all);