summaryrefslogtreecommitdiff
path: root/src/arch/sparc/pagetable.hh
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2007-08-27 18:26:36 -0700
committerGabe Black <gblack@eecs.umich.edu>2007-08-27 18:26:36 -0700
commit25ad253643a4348f72e98094f75163a7a2325e72 (patch)
tree4bec9bee3a2e8248c54da1ab59dfff6eaeb17e9b /src/arch/sparc/pagetable.hh
parent7227ab5f223eb5f4d3ce80ea16bff5f87c3300b6 (diff)
downloadgem5-25ad253643a4348f72e98094f75163a7a2325e72.tar.xz
SPARC: Fixes to get SPARC to compile again.
--HG-- extra : convert_revision : dab20c49fec9c2d385ca59b9ab627c2d3dddfe76
Diffstat (limited to 'src/arch/sparc/pagetable.hh')
-rw-r--r--src/arch/sparc/pagetable.hh5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/arch/sparc/pagetable.hh b/src/arch/sparc/pagetable.hh
index 980225052..961870579 100644
--- a/src/arch/sparc/pagetable.hh
+++ b/src/arch/sparc/pagetable.hh
@@ -190,6 +190,11 @@ struct TlbRange {
struct TlbEntry {
+ Addr pageStart;
+ TlbEntry()
+ {}
+ TlbEntry(Addr addr) : pageStart(addr)
+ {}
TlbRange range;
PageTableEntry pte;
bool used;