CPU: Fix where setMicroPC was being called instead of setNextMicroPC.
authorGabe Black <gblack@eecs.umich.edu>
Thu, 9 Oct 2008 07:06:05 +0000 (00:06 -0700)
committerGabe Black <gblack@eecs.umich.edu>
Thu, 9 Oct 2008 07:06:05 +0000 (00:06 -0700)
src/cpu/thread_context.hh

index b1687a49492ed50cfb896deebc7035ae0e6b7e23..9dffbd8c658a256e1db9fe6a727a179c54c4ca6f 100644 (file)
@@ -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); }