X86: Fix the PageShift constant in isa_traits.hh (I thought I alread did this?)

--HG--
extra : convert_revision : bdc51a66e4fdf4b0a51b5c774ca7372a00a57269
This commit is contained in:
Gabe Black 2007-10-04 12:34:29 -07:00
parent 50e2d20cb8
commit e1516aefbb

View 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;