summaryrefslogtreecommitdiff
path: root/src/arch/x86/insts
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2009-02-27 09:23:50 -0800
committerGabe Black <gblack@eecs.umich.edu>2009-02-27 09:23:50 -0800
commit9dfa3f7f735ead0ada9eb79227f217d0d76e0f49 (patch)
tree5c82e9e2dd91f0b808dd74fdce33863a2c6e128b /src/arch/x86/insts
parent9491debaa623aa0ed148ca4bc810f099058b67a1 (diff)
downloadgem5-9dfa3f7f735ead0ada9eb79227f217d0d76e0f49.tar.xz
X86: Fix segment limit checks.
Diffstat (limited to 'src/arch/x86/insts')
-rw-r--r--src/arch/x86/insts/microldstop.hh3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/arch/x86/insts/microldstop.hh b/src/arch/x86/insts/microldstop.hh
index f0051e2cf..1774454c3 100644
--- a/src/arch/x86/insts/microldstop.hh
+++ b/src/arch/x86/insts/microldstop.hh
@@ -67,7 +67,8 @@ namespace X86ISA
static const Request::FlagsType SegmentFlagMask = mask(4);
static const int FlagShift = 4;
enum FlagBit {
- CPL0FlagBit = 1
+ CPL0FlagBit = 1,
+ AddrSizeFlagBit = 2
};
/**