From efcded334c5e17ac2f328ee4af008925ae3b3d08 Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Mon, 19 Sep 2011 06:17:20 -0700 Subject: [PATCH] MIPS: Get rid of the unused "count" field in FaultVals. --- src/arch/mips/faults.hh | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/arch/mips/faults.hh b/src/arch/mips/faults.hh index cd1cd7040..0b3d6ce30 100644 --- a/src/arch/mips/faults.hh +++ b/src/arch/mips/faults.hh @@ -51,7 +51,6 @@ class MipsFaultBase : public FaultBase { const FaultName name; const FaultVect vect; - FaultStat count; }; Addr badVAddr; @@ -76,7 +75,6 @@ class MipsFault : public MipsFaultBase public: FaultName name() const { return vals.name; } FaultVect vect() const { return vals.vect; } - FaultStat & countStat() { return vals.count; } }; class MachineCheckFault : public MipsFault