From 770821716768a4e6ae6d4b1cf2ae02c1a54fbe0e Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Fri, 24 Nov 2006 14:00:45 -0500 Subject: Fix weird type modifier. --HG-- extra : convert_revision : 7372b7a92b3c9d05388acb43ba58ada18464fa24 --- src/arch/sparc/isa_traits.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/arch/sparc/isa_traits.hh') diff --git a/src/arch/sparc/isa_traits.hh b/src/arch/sparc/isa_traits.hh index 008f45bcd..287f90658 100644 --- a/src/arch/sparc/isa_traits.hh +++ b/src/arch/sparc/isa_traits.hh @@ -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; -- cgit v1.2.3