Fix weird type modifier.

--HG--
extra : convert_revision : 7372b7a92b3c9d05388acb43ba58ada18464fa24
This commit is contained in:
Gabe Black 2006-11-24 14:00:45 -05:00
parent 96a6af98e2
commit 7708217167

View file

@ -89,7 +89,7 @@ namespace SparcISA
//Why does both the previous set of constants and this one exist?
const int PageShift = 13;
const int PageBytes = ULL(1) << PageShift;
const int PageBytes = 1ULL << PageShift;
const int BranchPredAddrShiftAmt = 2;