From 890be773623adaa40af90933fcdb5abc717eb742 Mon Sep 17 00:00:00 2001 From: Nathan Binkert Date: Fri, 21 Aug 2009 09:10:25 -0700 Subject: X86: fix some simple compile issues static should not be used for constants that are not inside a class definition. --- src/arch/x86/insts/microldstop.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/arch/x86/insts') 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, -- cgit v1.2.3