From: Michael Beck Date: Fri, 21 Oct 2005 11:03:28 +0000 (+0000) Subject: cleaned up hooks X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=8e2f35804051329d357aacf1fe24cd2d24fa545f;p=libfirm cleaned up hooks [r6770] --- diff --git a/ir/ir/irarch.c b/ir/ir/irarch.c index ce22ceb19..2afd717ac 100644 --- a/ir/ir/irarch.c +++ b/ir/ir/irarch.c @@ -709,7 +709,7 @@ ir_node *arch_dep_replace_div_by_const(ir_node *irn) } if (res != irn) - hook_arch_dep_replace_div_by_const(irn); + hook_arch_dep_replace_division_by_const(irn); return res; } @@ -800,7 +800,7 @@ ir_node *arch_dep_replace_mod_by_const(ir_node *irn) } if (res != irn) - hook_arch_dep_replace_mod_by_const(irn); + hook_arch_dep_replace_division_by_const(irn); return res; } @@ -907,7 +907,7 @@ void arch_dep_replace_divmod_by_const(ir_node **div, ir_node **mod, ir_node *irn } if (*div) - hook_arch_dep_replace_DivMod_by_const(irn); + hook_arch_dep_replace_division_by_const(irn); }