From: Matthias Braun Date: Tue, 30 Sep 2008 14:05:58 +0000 (+0000) Subject: put memory operand folding to spill_apply time X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=cee302d942267d9a4b5450d0c4505217a9d61eab;p=libfirm put memory operand folding to spill_apply time [r22373] --- diff --git a/ir/be/bechordal_main.c b/ir/be/bechordal_main.c index 8af83be82..589642851 100644 --- a/ir/be/bechordal_main.c +++ b/ir/be/bechordal_main.c @@ -367,12 +367,12 @@ static void post_spill(post_spill_env_t *pse, int iteration) { called in a loop after spilling for each register class. But we only need to fix stack nodes once in this case. */ - BE_TIMER_PUSH(t_ra_spill); + BE_TIMER_PUSH(t_ra_spill_apply); check_for_memory_operands(chordal_env); if (iteration == 0) { be_abi_fix_stack_nodes(birg->abi); } - BE_TIMER_POP(t_ra_spill); + BE_TIMER_POP(t_ra_spill_apply); BE_TIMER_PUSH(t_verify);