summaryrefslogtreecommitdiff
path: root/src/arch/x86/isa_traits.hh
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2007-10-04 12:34:29 -0700
committerGabe Black <gblack@eecs.umich.edu>2007-10-04 12:34:29 -0700
commite1516aefbb7f1f58ddb7532852da684504e1abbc (patch)
tree3866a4ecab02873dccb9a7310a6e6d41f650e8e3 /src/arch/x86/isa_traits.hh
parent50e2d20cb876a054f53162e7b01306039c213457 (diff)
downloadgem5-e1516aefbb7f1f58ddb7532852da684504e1abbc.tar.xz
X86: Fix the PageShift constant in isa_traits.hh (I thought I alread did this?)
--HG-- extra : convert_revision : bdc51a66e4fdf4b0a51b5c774ca7372a00a57269
Diffstat (limited to 'src/arch/x86/isa_traits.hh')
-rw-r--r--src/arch/x86/isa_traits.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/x86/isa_traits.hh b/src/arch/x86/isa_traits.hh
index 6e8cac94a..13fe9af4e 100644
--- a/src/arch/x86/isa_traits.hh
+++ b/src/arch/x86/isa_traits.hh
@@ -129,7 +129,7 @@ namespace X86ISA
const int LogVMPageSize = 12;
const int VMPageSize = (1 << LogVMPageSize);
- const int PageShift = 13;
+ const int PageShift = 12;
const int PageBytes = 1ULL << PageShift;
const int BranchPredAddrShiftAmt = 0;