From 014476c446ab6fd72461c764c018fa401e5f88c1 Mon Sep 17 00:00:00 2001 From: Matthias Braun Date: Mon, 4 Aug 2008 11:48:20 +0000 Subject: [PATCH] rename lower_Switch to lower_switch to be consistent with the rest [r20964] --- include/libfirm/lowering.h | 2 +- ir/lower/lower_switch.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/libfirm/lowering.h b/include/libfirm/lowering.h index ec6c6e149..3c3111f4b 100644 --- a/include/libfirm/lowering.h +++ b/include/libfirm/lowering.h @@ -157,7 +157,7 @@ void lower_CopyB(ir_graph *irg, unsigned max_size, unsigned native_mode_bytes); * @param spare_size Allowed spare size for table switches in machine words. * (Default in edgfe: 128) */ -void lower_Switch(ir_graph *irg, unsigned spare_size); +void lower_switch(ir_graph *irg, unsigned spare_size); /** * A callback type for creating an intrinsic entity for a given opcode. diff --git a/ir/lower/lower_switch.c b/ir/lower/lower_switch.c index 82c028326..1c7945542 100644 --- a/ir/lower/lower_switch.c +++ b/ir/lower/lower_switch.c @@ -251,7 +251,7 @@ static void find_cond_nodes(ir_node *block, void *ctx) * @param spare_size Allowed spare size for table switches in machine words. * (Default in edgfe: 128) */ -void lower_Switch(ir_graph *irg, unsigned spare_size) +void lower_switch(ir_graph *irg, unsigned spare_size) { walk_env_t env; ir_graph *rem = current_ir_graph; -- 2.20.1