From: Gabe Black Date: Thu, 9 Oct 2008 07:06:05 +0000 (-0700) Subject: CPU: Fix where setMicroPC was being called instead of setNextMicroPC. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c5c6ad7ed6dff171c888aa20d505f87293cc1159;p=gem5.git CPU: Fix where setMicroPC was being called instead of setNextMicroPC. --- diff --git a/src/cpu/thread_context.hh b/src/cpu/thread_context.hh index b1687a494..9dffbd8c6 100644 --- a/src/cpu/thread_context.hh +++ b/src/cpu/thread_context.hh @@ -429,7 +429,7 @@ class ProxyThreadContext : public ThreadContext uint64_t readNextMicroPC() { return actualTC->readMicroPC(); } - void setNextMicroPC(uint64_t val) { actualTC->setMicroPC(val); } + void setNextMicroPC(uint64_t val) { actualTC->setNextMicroPC(val); } MiscReg readMiscRegNoEffect(int misc_reg) { return actualTC->readMiscRegNoEffect(misc_reg); }