target/profiling: Use the correct method to access registers

Change-Id: I6b8590dc9d07886b885013b1b767fe2f0739cd6a
Signed-off-by: Andreas Fritiofson <andreas.fritiofson@gmail.com>
Reviewed-on: http://openocd.zylin.com/2479
Tested-by: jenkins
Reviewed-by: Paul Fertser <fercerpav@gmail.com>
This commit is contained in:
Andreas Fritiofson 2015-01-18 15:36:52 +01:00
parent 18c86b1c45
commit 25e7a69e26
1 changed files with 1 additions and 1 deletions

View File

@ -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);