X86: Fix the PageShift constant in isa_traits.hh (I thought I alread did this?)
authorGabe Black <gblack@eecs.umich.edu>
Thu, 4 Oct 2007 19:34:29 +0000 (12:34 -0700)
committerGabe Black <gblack@eecs.umich.edu>
Thu, 4 Oct 2007 19:34:29 +0000 (12:34 -0700)
--HG--
extra : convert_revision : bdc51a66e4fdf4b0a51b5c774ca7372a00a57269

src/arch/x86/isa_traits.hh

index 6e8cac94a2ec6053310821fdb7b147f48f463121..13fe9af4e73f8dd4511f138e331e419dce5d66b5 100644 (file)
@@ -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;