projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
50e2d20
)
X86: Fix the PageShift constant in isa_traits.hh (I thought I alread did this?)
author
Gabe Black
<gblack@eecs.umich.edu>
Thu, 4 Oct 2007 19:34:29 +0000
(12:34 -0700)
committer
Gabe 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
patch
|
blob
|
history
diff --git
a/src/arch/x86/isa_traits.hh
b/src/arch/x86/isa_traits.hh
index 6e8cac94a2ec6053310821fdb7b147f48f463121..13fe9af4e73f8dd4511f138e331e419dce5d66b5 100644
(file)
--- 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 = 1
3
;
+ const int PageShift = 1
2
;
const int PageBytes = 1ULL << PageShift;
const int BranchPredAddrShiftAmt = 0;