diff options
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/alpha/tlb.cc | 2 | ||||
-rw-r--r-- | src/arch/mips/tlb.cc | 2 | ||||
-rw-r--r-- | src/arch/power/tlb.cc | 2 |
3 files changed, 0 insertions, 6 deletions
diff --git a/src/arch/alpha/tlb.cc b/src/arch/alpha/tlb.cc index fcd2b518b..3360b34c5 100644 --- a/src/arch/alpha/tlb.cc +++ b/src/arch/alpha/tlb.cc @@ -76,8 +76,6 @@ TLB::~TLB() void TLB::regStats() { - BaseTLB::regStats(); - fetch_hits .name(name() + ".fetch_hits") .desc("ITB hits"); diff --git a/src/arch/mips/tlb.cc b/src/arch/mips/tlb.cc index 340c83021..d2aa5ad70 100644 --- a/src/arch/mips/tlb.cc +++ b/src/arch/mips/tlb.cc @@ -226,8 +226,6 @@ TLB::unserialize(CheckpointIn &cp) void TLB::regStats() { - BaseTLB::regStats(); - read_hits .name(name() + ".read_hits") .desc("DTB read hits") diff --git a/src/arch/power/tlb.cc b/src/arch/power/tlb.cc index 90a341d85..edfb4f453 100644 --- a/src/arch/power/tlb.cc +++ b/src/arch/power/tlb.cc @@ -223,8 +223,6 @@ TLB::unserialize(CheckpointIn &cp) void TLB::regStats() { - BaseTLB::regStats(); - read_hits .name(name() + ".read_hits") .desc("DTB read hits") |