summaryrefslogtreecommitdiff
path: root/src/target/arm_simulator.c
diff options
context:
space:
mode:
authorAntonio Borneo <borneo.antonio@gmail.com>2010-04-10 16:57:49 +0800
committerAntonio Borneo <borneo.antonio@gmail.com>2010-04-10 16:57:49 +0800
commit8a871560f99779b279623540588f7295fe041781 (patch)
tree674935a91127b80bbfaabe46b5fea53ba00401ba /src/target/arm_simulator.c
parent4a1bd5b80603f73593fd7094d7da41ff72130461 (diff)
downloadopenocd+libswd-8a871560f99779b279623540588f7295fe041781.tar.gz
openocd+libswd-8a871560f99779b279623540588f7295fe041781.tar.bz2
openocd+libswd-8a871560f99779b279623540588f7295fe041781.tar.xz
openocd+libswd-8a871560f99779b279623540588f7295fe041781.zip
ARM_SIMULATOR: review scope of functions
Add "static" qualifier to private functions. Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
Diffstat (limited to 'src/target/arm_simulator.c')
-rw-r--r--src/target/arm_simulator.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/target/arm_simulator.c b/src/target/arm_simulator.c
index 908c6133..730f588c 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);