sparc: init. cache state in TLB
authorKorey Sewell <ksewell@umich.edu>
Mon, 20 Jun 2011 01:43:35 +0000 (21:43 -0400)
committerKorey Sewell <ksewell@umich.edu>
Mon, 20 Jun 2011 01:43:35 +0000 (21:43 -0400)
valgrind complains and its a potential source of instability, so go ahead
and set it to 0 to start

src/arch/sparc/tlb.cc

index 00ec4e41154d7dbf6d373431662bf40e90633617..ddc37cf3bf6e05be62935afe0a626b79569c4c6b 100644 (file)
@@ -50,7 +50,7 @@ namespace SparcISA {
 
 TLB::TLB(const Params *p)
     : BaseTLB(p), size(p->size), usedEntries(0), lastReplaced(0),
-      cacheValid(false)
+      cacheState(0), cacheValid(false)
 {
     // To make this work you'll have to change the hypervisor and OS
     if (size > 64)