diff options
author | Nathan Binkert <nate@binkert.org> | 2009-08-21 09:10:25 -0700 |
---|---|---|
committer | Nathan Binkert <nate@binkert.org> | 2009-08-21 09:10:25 -0700 |
commit | 890be773623adaa40af90933fcdb5abc717eb742 (patch) | |
tree | 3044b85922f39c1a40bd329e3ad5090385734b46 /src/arch/x86/insts/microldstop.hh | |
parent | f6bb7ec4eb38cc61c32f4c6941e09deda23f979c (diff) | |
download | gem5-890be773623adaa40af90933fcdb5abc717eb742.tar.xz |
X86: fix some simple compile issues
static should not be used for constants that are not inside a class definition.
Diffstat (limited to 'src/arch/x86/insts/microldstop.hh')
-rw-r--r-- | src/arch/x86/insts/microldstop.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/x86/insts/microldstop.hh b/src/arch/x86/insts/microldstop.hh index 309a2e6b7..048535a27 100644 --- a/src/arch/x86/insts/microldstop.hh +++ b/src/arch/x86/insts/microldstop.hh @@ -64,8 +64,8 @@ namespace X86ISA { - static const Request::FlagsType SegmentFlagMask = mask(4); - static const int FlagShift = 4; + const Request::FlagsType SegmentFlagMask = mask(4); + const int FlagShift = 4; enum FlagBit { CPL0FlagBit = 1, AddrSizeFlagBit = 2, |