From: Gabe Black Date: Mon, 19 Sep 2011 13:17:20 +0000 (-0700) Subject: MIPS: Get rid of the unused "count" field in FaultVals. X-Git-Tag: stable_2012_02_02~63 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=efcded334c5e17ac2f328ee4af008925ae3b3d08;p=gem5.git MIPS: Get rid of the unused "count" field in FaultVals. --- 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