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:
parent
50e2d20cb8
commit
e1516aefbb
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue