diff options
author | Lisa Hsu <hsul@eecs.umich.edu> | 2003-10-22 09:45:39 -0400 |
---|---|---|
committer | Lisa Hsu <hsul@eecs.umich.edu> | 2003-10-22 09:45:39 -0400 |
commit | da62ad294e8e79802ffa0c8a412b4356825e1f0e (patch) | |
tree | fadc559e8a714d4c3bedc88127306dbbb1e1afba | |
parent | b525eb5bbe1830a68cf3ff1bdbb31ce9f1297922 (diff) | |
download | gem5-da62ad294e8e79802ffa0c8a412b4356825e1f0e.tar.xz |
statistics.cc:
change printf to be printed only when something is binned so regression doesn't freak out.
base/statistics.cc:
change printf to be printed only when something is binned so regression doesn't freak out.
--HG--
extra : convert_revision : cb60128fc3ab605aa7e915c7c7512cf93b156c96
-rw-r--r-- | base/statistics.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/statistics.cc b/base/statistics.cc index a2734cf37..6593451c4 100644 --- a/base/statistics.cc +++ b/base/statistics.cc @@ -197,11 +197,11 @@ Database::dump(ostream &stream) ++j; ccprintf(stream, "---------------------------------\n"); } + ccprintf(stream, "**************ALL STATS************\n"); } list_t::iterator k = printStats.begin(); list_t::iterator endprint = printStats.end(); - ccprintf(stream, "*****ALL STATS*****\n"); while (k != endprint) { Stat *stat = *k; if (stat->dodisplay() && !stat->binned()) |