From: Andreas Fritiofson Date: Sun, 18 Jan 2015 14:36:52 +0000 (+0100) Subject: target/profiling: Use the correct method to access registers X-Git-Tag: v0.9.0-rc1~131 X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=commitdiff_plain;h=25e7a69e266b7c848af3c88f5743c88120d28d0f target/profiling: Use the correct method to access registers Change-Id: I6b8590dc9d07886b885013b1b767fe2f0739cd6a Signed-off-by: Andreas Fritiofson Reviewed-on: http://openocd.zylin.com/2479 Tested-by: jenkins Reviewed-by: Paul Fertser --- diff --git a/src/target/target.c b/src/target/target.c index c2408b27c5..9f12704a5c 100644 --- a/src/target/target.c +++ b/src/target/target.c @@ -1819,7 +1819,7 @@ static int target_profiling_default(struct target *target, uint32_t *samples, for (;;) { target_poll(target); if (target->state == TARGET_HALTED) { - uint32_t t = *((uint32_t *)reg->value); + uint32_t t = buf_get_u32(reg->value, 0, 32); samples[sample_count++] = t; /* current pc, addr = 0, do not handle breakpoints, not debugging */ retval = target_resume(target, 1, 0, 0, 0);