diff options
author | Korey Sewell <ksewell@umich.edu> | 2009-05-11 19:44:34 -0400 |
---|---|---|
committer | Korey Sewell <ksewell@umich.edu> | 2009-05-11 19:44:34 -0400 |
commit | a63cc2ff5fbba0e42a7aa39bfce6b6e2310fd52a (patch) | |
tree | 0952c5678b449ffd8def645fec2b714c4960df9e /src/base/stats/info.hh | |
parent | eea2b02b04a3076969dd607aca739b96d94b6155 (diff) | |
parent | f21e80ec72cf68ad859f18a2886297004ea9f959 (diff) | |
download | gem5-a63cc2ff5fbba0e42a7aa39bfce6b6e2310fd52a.tar.xz |
Merge Ruby Stuff
Diffstat (limited to 'src/base/stats/info.hh')
-rw-r--r-- | src/base/stats/info.hh | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/base/stats/info.hh b/src/base/stats/info.hh index f24ad11d7..e56445f94 100644 --- a/src/base/stats/info.hh +++ b/src/base/stats/info.hh @@ -28,6 +28,9 @@ * Authors: Nathan Binkert */ +#ifndef __BASE_STATS_INFO_HH__ +#define __BASE_STATS_INFO_HH__ + #include "base/flags.hh" #include "base/stats/types.hh" @@ -54,11 +57,9 @@ const FlagsType dist = 0x0080; const FlagsType nozero = 0x0100; /** Don't print if this is NAN */ const FlagsType nonan = 0x0200; -/** Used for SS compatability. */ -const FlagsType __substat = 0x8000; /** Mask of flags that can't be set directly */ -const FlagsType __reserved = init | print | __substat; +const FlagsType __reserved = init | print; struct StorageParams { @@ -245,3 +246,5 @@ class FormulaInfo : public VectorInfo /* namespace Stats */ } + +#endif // __BASE_STATS_INFO_HH__ |