diff options
author | Nilay Vaish <nilay@cs.wisc.edu> | 2013-12-03 10:36:04 -0600 |
---|---|---|
committer | Nilay Vaish <nilay@cs.wisc.edu> | 2013-12-03 10:36:04 -0600 |
commit | 5800e832235e611a843e10cead23b1b035e88916 (patch) | |
tree | fd8c2c43986f07d53770409bfae4ac983e25f46b /src/cpu | |
parent | 59a041c5e79d73a93893445346c7817ca477ab94 (diff) | |
download | gem5-5800e832235e611a843e10cead23b1b035e88916.tar.xz |
cpu: call BaseCPU startup() function in o3 cpu
Diffstat (limited to 'src/cpu')
-rw-r--r-- | src/cpu/o3/cpu.cc | 1 |
1 files changed, 1 insertions, 0 deletions
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 <class Impl> void FullO3CPU<Impl>::startup() { + BaseCPU::startup(); for (int tid = 0; tid < numThreads; ++tid) isa[tid]->startup(threadContexts[tid]); |