summaryrefslogtreecommitdiff
path: root/src/target/arm7_9_common.c
diff options
context:
space:
mode:
authorJun Ma <jma@hfut.edu.cn>2010-05-10 22:54:25 +0800
committerØyvind Harboe <oyvind.harboe@zylin.com>2010-05-12 13:37:33 +0200
commitb05f8171c965bc3875df82f4469f952a13e2c504 (patch)
treeb4670b261d1c1f94a8cb551ee197c633321fa223 /src/target/arm7_9_common.c
parent6f03e92959008708ac6808df679f5729f6683166 (diff)
downloadopenocd_libswd-b05f8171c965bc3875df82f4469f952a13e2c504.tar.gz
openocd_libswd-b05f8171c965bc3875df82f4469f952a13e2c504.tar.bz2
openocd_libswd-b05f8171c965bc3875df82f4469f952a13e2c504.tar.xz
openocd_libswd-b05f8171c965bc3875df82f4469f952a13e2c504.zip
fix instruction refilling bug when using software breakpoints on a big-endian arm926ej-s system
Signed-off-by: Jun Ma <sync.jma@gmail.com> Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
Diffstat (limited to 'src/target/arm7_9_common.c')
-rw-r--r--src/target/arm7_9_common.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/target/arm7_9_common.c b/src/target/arm7_9_common.c
index 9f1bb2e6..ac18b379 100644
--- a/src/target/arm7_9_common.c
+++ b/src/target/arm7_9_common.c
@@ -377,6 +377,7 @@ static int arm7_9_unset_breakpoint(struct target *target, struct breakpoint *bre
{
return retval;
}
+ current_instr = target_buffer_get_u32(target, (uint8_t *)&current_instr);
if (current_instr == arm7_9->arm_bkpt)
if ((retval = target_write_memory(target, breakpoint->address, 4, 1, breakpoint->orig_instr)) != ERROR_OK)
{