BsaeCPU: Get rid of some bad DPRINTFs.
authorSteve Reinhardt <stever@eecs.umich.edu>
Sun, 29 Jul 2007 20:22:44 +0000 (13:22 -0700)
committerSteve Reinhardt <stever@eecs.umich.edu>
Sun, 29 Jul 2007 20:22:44 +0000 (13:22 -0700)
People should never put pointers in DPRINTFs; it messes up
tracediffs.  Plus these used the FullCPU trace flag, which
is not right.

--HG--
extra : convert_revision : 82ed56757da0ad947c165ba205b5f752c85c6667

src/cpu/base.cc

index 0fc3b4ceadbc25c49fe8a067603b6751c9d02f3c..6c8bf65fa250997231ac64643003571c78beb0e2 100644 (file)
@@ -106,14 +106,10 @@ BaseCPU::BaseCPU(Params *p)
 #endif
 {
 //    currentTick = curTick;
-    DPRINTF(FullCPU, "BaseCPU: Creating object, mem address %#x.\n", this);
 
     // add self to global list of CPUs
     cpuList.push_back(this);
 
-    DPRINTF(FullCPU, "BaseCPU: CPU added to cpuList, mem address %#x.\n",
-            this);
-
     if (number_of_threads > maxThreadsPerCPU)
         maxThreadsPerCPU = number_of_threads;