diff options
Diffstat (limited to 'cpu/base_cpu.cc')
-rw-r--r-- | cpu/base_cpu.cc | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/cpu/base_cpu.cc b/cpu/base_cpu.cc index 643a2b652..1077c8a51 100644 --- a/cpu/base_cpu.cc +++ b/cpu/base_cpu.cc @@ -51,7 +51,6 @@ vector<BaseCPU *> BaseCPU::cpuList; // been initialized int maxThreadsPerCPU = 1; -extern void debug_break(); #ifdef FULL_SYSTEM BaseCPU::BaseCPU(Params *p) : SimObject(p->name), cycleTime(p->cycleTime), checkInterrupts(true), @@ -64,8 +63,6 @@ BaseCPU::BaseCPU(Params *p) { DPRINTF(FullCPU, "BaseCPU: Creating object, mem address %#x.\n", this); - debug_break(); - // add self to global list of CPUs cpuList.push_back(this); |