From ba3a56937bc921a72b672d666a60ea4292cff449 Mon Sep 17 00:00:00 2001 From: Palmer Dabbelt Date: Mon, 1 May 2017 08:31:18 -0700 Subject: Correct previous hart caching logic --- src/target/riscv/riscv.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/target/riscv/riscv.c b/src/target/riscv/riscv.c index 15dfccb..42c2f87 100644 --- a/src/target/riscv/riscv.c +++ b/src/target/riscv/riscv.c @@ -890,9 +890,10 @@ bool riscv_rtos_enabled(const struct target *target) void riscv_set_current_hartid(struct target *target, int hartid) { RISCV_INFO(r); + int previous_hartid = riscv_current_hartid(target); r->current_hartid = hartid; assert(riscv_rtos_enabled(target) || target->coreid == hartid); - int previous_hartid = riscv_current_hartid(target); + LOG_DEBUG("setting hartid to %d, was %d", hartid, previous_hartid); if (riscv_rtos_enabled(target)) r->select_current_hart(target); -- cgit v1.1