diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2006-11-24 14:00:45 -0500 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2006-11-24 14:00:45 -0500 |
commit | 770821716768a4e6ae6d4b1cf2ae02c1a54fbe0e (patch) | |
tree | 6e9acc153057dba30133dc9bb7d30a264f773cba /src/arch | |
parent | 96a6af98e2f088c5c573b371d65e7a9be17fe534 (diff) | |
download | gem5-770821716768a4e6ae6d4b1cf2ae02c1a54fbe0e.tar.xz |
Fix weird type modifier.
--HG--
extra : convert_revision : 7372b7a92b3c9d05388acb43ba58ada18464fa24
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/sparc/isa_traits.hh | 2 |
1 files changed, 1 insertions, 1 deletions
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; |