diff options
author | Korey Sewell <ksewell@umich.edu> | 2006-07-01 19:02:43 -0400 |
---|---|---|
committer | Korey Sewell <ksewell@umich.edu> | 2006-07-01 19:02:43 -0400 |
commit | 23cfd9489bdff00f926f5dcfb7dd72333fb11bfb (patch) | |
tree | 3f1ac40d6635d76315d3fca9e54309a9a264ce4b /src/cpu/base.cc | |
parent | 62961a291692c960b67158f4152d480c160f8ac8 (diff) | |
download | gem5-23cfd9489bdff00f926f5dcfb7dd72333fb11bfb.tar.xz |
traceflag stuff
src/base/traceflags.py:
add BaseCPU flag, O3CPUAll flag grouping
src/cpu/base.cc:
Use BaseCPU flag instead of FullCPU flag
--HG--
extra : convert_revision : 32f737a2f58eb936634799f1f809e07cbba90179
Diffstat (limited to 'src/cpu/base.cc')
-rw-r--r-- | src/cpu/base.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cpu/base.cc b/src/cpu/base.cc index 40cec416b..9df61d2ce 100644 --- a/src/cpu/base.cc +++ b/src/cpu/base.cc @@ -68,12 +68,12 @@ BaseCPU::BaseCPU(Params *p) number_of_threads(p->numberOfThreads), system(p->system) #endif { - DPRINTF(FullCPU, "BaseCPU: Creating object, mem address %#x.\n", this); + DPRINTF(BaseCPU, "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", + DPRINTF(BaseCPU, "BaseCPU: CPU added to cpuList, mem address %#x.\n", this); if (number_of_threads > maxThreadsPerCPU) |