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>__archive__
parent
18c86b1c45
commit
25e7a69e26
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue