From: Nilay Vaish Date: Tue, 3 Dec 2013 16:36:04 +0000 (-0600) Subject: cpu: call BaseCPU startup() function in o3 cpu X-Git-Tag: stable_2014_02_15~11 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5800e832235e611a843e10cead23b1b035e88916;p=gem5.git cpu: call BaseCPU startup() function in o3 cpu --- diff --git a/src/cpu/o3/cpu.cc b/src/cpu/o3/cpu.cc index e13d7a959..515d87f1b 100644 --- a/src/cpu/o3/cpu.cc +++ b/src/cpu/o3/cpu.cc @@ -674,6 +674,7 @@ template void FullO3CPU::startup() { + BaseCPU::startup(); for (int tid = 0; tid < numThreads; ++tid) isa[tid]->startup(threadContexts[tid]);