From: Gabe Black Date: Mon, 23 Aug 2010 16:44:19 +0000 (-0700) Subject: CPU: Make the constants for StaticInst flags visible outside the class. X-Git-Tag: stable_2012_02_02~876 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b187e7c9cc025dbd5bc525de3ef9352219007f72;p=gem5.git CPU: Make the constants for StaticInst flags visible outside the class. --- diff --git a/src/cpu/static_inst.hh b/src/cpu/static_inst.hh index fdec09756..fa4205836 100644 --- a/src/cpu/static_inst.hh +++ b/src/cpu/static_inst.hh @@ -104,7 +104,7 @@ isRomMicroPC(MicroPC upc) */ class StaticInstBase : public RefCounted { - protected: + public: /// Set of boolean static instruction properties. /// @@ -185,6 +185,8 @@ class StaticInstBase : public RefCounted NumFlags }; + protected: + /// Flag values for this instruction. std::bitset flags;