projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
59a041c
)
cpu: call BaseCPU startup() function in o3 cpu
author
Nilay Vaish
<nilay@cs.wisc.edu>
Tue, 3 Dec 2013 16:36:04 +0000
(10:36 -0600)
committer
Nilay Vaish
<nilay@cs.wisc.edu>
Tue, 3 Dec 2013 16:36:04 +0000
(10:36 -0600)
src/cpu/o3/cpu.cc
patch
|
blob
|
history
diff --git
a/src/cpu/o3/cpu.cc
b/src/cpu/o3/cpu.cc
index e13d7a959528d2657c388dd5b5276a4acad3ebc0..515d87f1b7e59d268825b664c379c3e8e9db195b 100644
(file)
--- a/
src/cpu/o3/cpu.cc
+++ b/
src/cpu/o3/cpu.cc
@@
-674,6
+674,7
@@
template <class Impl>
void
FullO3CPU<Impl>::startup()
{
+ BaseCPU::startup();
for (int tid = 0; tid < numThreads; ++tid)
isa[tid]->startup(threadContexts[tid]);