From a1fa9f94b8e53bed228055c5b03379ba6ab1815f Mon Sep 17 00:00:00 2001 From: Jason Lowe-Power Date: Tue, 7 Sep 2021 18:29:43 -0700 Subject: [PATCH] arch-riscv: Remove unused stats These stats were unused and caused a warning about legacy stats. From what I can tell looking at the blame, they were never used. Change-Id: If2886e91dd776c34354a79a4cbc447ffe5988982 Signed-off-by: Jason Lowe-Power Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/50068 Reviewed-by: Hoa Nguyen Maintainer: Jason Lowe-Power Tested-by: kokoro --- src/arch/riscv/tlb.hh | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/arch/riscv/tlb.hh b/src/arch/riscv/tlb.hh index 26b6afa29f..f37143dfb7 100644 --- a/src/arch/riscv/tlb.hh +++ b/src/arch/riscv/tlb.hh @@ -75,11 +75,9 @@ class TLB : public BaseTLB statistics::Scalar readHits; statistics::Scalar readMisses; - statistics::Scalar read_acv; statistics::Scalar readAccesses; statistics::Scalar writeHits; statistics::Scalar writeMisses; - statistics::Scalar write_acv; statistics::Scalar writeAccesses; statistics::Formula hits;