From: Nathan Binkert Date: Tue, 6 Jul 2004 23:22:39 +0000 (-0400) Subject: Make binning work with stuff other than FS_MEASURE X-Git-Tag: m5_1.0_tutorial~266^2~1 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2fecc3c785e4f618bfb64fce93120eade9bdda9d;p=gem5.git Make binning work with stuff other than FS_MEASURE --HG-- extra : convert_revision : e3fa3cfbdf2f13dd3a8d2266dd64c2c335f998d6 --- diff --git a/base/statistics.hh b/base/statistics.hh index bd1698ae7..f3b8a3922 100644 --- a/base/statistics.hh +++ b/base/statistics.hh @@ -2184,7 +2184,7 @@ class SumNode : public Node * binned. If the typedef is NoBin, nothing is binned. If it is * MainBin, then all stats are binned under that Bin. */ -#if defined(FS_MEASURE) +#if defined(FS_MEASURE) || defined(STATS_BINNING) typedef MainBin DefaultBin; #else typedef NoBin DefaultBin;