Fix weird type modifier.
authorGabe Black <gblack@eecs.umich.edu>
Fri, 24 Nov 2006 19:00:45 +0000 (14:00 -0500)
committerGabe Black <gblack@eecs.umich.edu>
Fri, 24 Nov 2006 19:00:45 +0000 (14:00 -0500)
--HG--
extra : convert_revision : 7372b7a92b3c9d05388acb43ba58ada18464fa24

src/arch/sparc/isa_traits.hh

index 008f45bcd3fe9d2b72ad600b0c495d1b1f662c57..287f9065885e09a4e7b7e51f9f327c25eaf3726d 100644 (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;