From: Antonio Borneo Date: Sat, 10 Apr 2010 08:57:49 +0000 (+0800) Subject: ARM_SIMULATOR: review scope of functions X-Git-Tag: v0.5.0-rc1~780 X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=commitdiff_plain;h=8a871560f99779b279623540588f7295fe041781 ARM_SIMULATOR: review scope of functions Add "static" qualifier to private functions. Signed-off-by: Antonio Borneo --- diff --git a/src/target/arm_simulator.c b/src/target/arm_simulator.c index 908c613313..730f588ce5 100644 --- a/src/target/arm_simulator.c +++ b/src/target/arm_simulator.c @@ -279,7 +279,7 @@ static int thumb_pass_branch_condition(uint32_t cpsr, uint16_t opcode) * if the dry_run_pc argument is provided, no state is changed, * but the new pc is stored in the variable pointed at by the argument */ -int arm_simulate_step_core(struct target *target, +static int arm_simulate_step_core(struct target *target, uint32_t *dry_run_pc, struct arm_sim_interface *sim) { uint32_t current_pc = sim->get_reg(sim, 15); diff --git a/src/target/arm_simulator.h b/src/target/arm_simulator.h index bd5458e409..b332a17412 100644 --- a/src/target/arm_simulator.h +++ b/src/target/arm_simulator.h @@ -40,8 +40,4 @@ struct arm_sim_interface /* armv4_5 version */ int arm_simulate_step(struct target *target, uint32_t *dry_run_pc); -/* a generic arm simulator. Caller must implement the sim interface */ -int arm_simulate_step_core(struct target *target, - uint32_t *dry_run_pc, struct arm_sim_interface *sim); - #endif /* ARM_SIMULATOR_H */