From: Steve Reinhardt Date: Tue, 24 May 2005 20:37:30 +0000 (-0400) Subject: Little debugging things. X-Git-Tag: m5_1.0_tutorial~55 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=432e779fb04470ae62ca47fe3ed9e00defd3e678;p=gem5.git Little debugging things. cpu/base_cpu.cc: Get rid of leftover debugging code. --HG-- extra : convert_revision : b33b2279499456b12a6242a9472ea5be724b37be --- 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::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);