diff options
author | Lisa Hsu <hsul@eecs.umich.edu> | 2003-10-30 19:20:18 -0500 |
---|---|---|
committer | Lisa Hsu <hsul@eecs.umich.edu> | 2003-10-30 19:20:18 -0500 |
commit | a5356bd75f589f1e5ef4781292d8f870515e1f03 (patch) | |
tree | 478edb1f615b6f1ceb90678e1ed27da82d1735a4 | |
parent | 2c451a0ad4df2301fdb13f9adf7754693b56d533 (diff) | |
download | gem5-a5356bd75f589f1e5ef4781292d8f870515e1f03.tar.xz |
statistics.hh:
oops - remove a debug printf
base/statistics.hh:
oops - remove a debug printf
--HG--
extra : convert_revision : a6ecab93f79ce0a5cb6ff129750d8f6a2de8d38c
-rw-r--r-- | base/statistics.hh | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/base/statistics.hh b/base/statistics.hh index 2344b5df5..98df8d55e 100644 --- a/base/statistics.hh +++ b/base/statistics.hh @@ -59,8 +59,6 @@ #include "sim/host.hh" -#include "base/cprintf.hh" - // // Un-comment this to enable weirdo-stat debugging // @@ -2208,7 +2206,6 @@ struct StatBin : public GenBin char *memory(off_t off) { if (memsize == -1) { memsize = CeilPow2((size_t) offset()); - cprintf("this is memsize: %d\n", (uint64_t) memsize); } assert(offset() <= size()); return Detail::BinBase::memory() + off; |