projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e1b306f
)
CPU: Fix where setMicroPC was being called instead of setNextMicroPC.
author
Gabe Black
<gblack@eecs.umich.edu>
Thu, 9 Oct 2008 07:06:05 +0000
(
00:06
-0700)
committer
Gabe Black
<gblack@eecs.umich.edu>
Thu, 9 Oct 2008 07:06:05 +0000
(
00:06
-0700)
src/cpu/thread_context.hh
patch
|
blob
|
history
diff --git
a/src/cpu/thread_context.hh
b/src/cpu/thread_context.hh
index b1687a49492ed50cfb896deebc7035ae0e6b7e23..9dffbd8c658a256e1db9fe6a727a179c54c4ca6f 100644
(file)
--- 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->set
Next
MicroPC(val); }
MiscReg readMiscRegNoEffect(int misc_reg)
{ return actualTC->readMiscRegNoEffect(misc_reg); }