cpu: call BaseCPU startup() function in o3 cpu

This commit is contained in:
Nilay Vaish 2013-12-03 10:36:04 -06:00
parent 59a041c5e7
commit 5800e83223

View file

@ -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]);