From 8e2f35804051329d357aacf1fe24cd2d24fa545f Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Fri, 21 Oct 2005 11:03:28 +0000 Subject: [PATCH] cleaned up hooks [r6770] --- ir/ir/irarch.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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); } -- 2.20.1