summaryrefslogtreecommitdiff
path: root/src/arch/sparc/pagetable.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/sparc/pagetable.cc')
-rw-r--r--src/arch/sparc/pagetable.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/arch/sparc/pagetable.cc b/src/arch/sparc/pagetable.cc
index e91c0599f..bdd3e97fe 100644
--- a/src/arch/sparc/pagetable.cc
+++ b/src/arch/sparc/pagetable.cc
@@ -33,6 +33,7 @@
namespace SparcISA
{
+
void
TlbEntry::serialize(std::ostream &os)
{
@@ -67,8 +68,8 @@ TlbEntry::unserialize(Checkpoint *cp, const std::string &section)
}
-int PageTableEntry::pageSizes[] = {8*1024, 64*1024, 0, 4*1024*1024, 0,
- 256*1024*1024L};
+int PageTableEntry::pageSizes[] =
+ { 8 * 1024, 64 * 1024, 0, 4 * 1024 * 1024, 0, 256 * 1024 * 1024L} ;
}