diff options
author | Steve Reinhardt <stever@eecs.umich.edu> | 2007-07-29 13:22:44 -0700 |
---|---|---|
committer | Steve Reinhardt <stever@eecs.umich.edu> | 2007-07-29 13:22:44 -0700 |
commit | 362ff1bcebd78c0c247e435eac657c8a1134b1fb (patch) | |
tree | a9fa96af59d61626e93d4d0256e8e88cf4f06f7c | |
parent | b4087e0e44bba5c4ddbfdb541d50c6c55abed338 (diff) | |
download | gem5-362ff1bcebd78c0c247e435eac657c8a1134b1fb.tar.xz |
BsaeCPU: Get rid of some bad DPRINTFs.
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
-rw-r--r-- | src/cpu/base.cc | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/cpu/base.cc b/src/cpu/base.cc index 0fc3b4cea..6c8bf65fa 100644 --- a/src/cpu/base.cc +++ b/src/cpu/base.cc @@ -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; |