summaryrefslogtreecommitdiff
path: root/src/arch/mips/faults.hh
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2011-09-19 06:17:20 -0700
committerGabe Black <gblack@eecs.umich.edu>2011-09-19 06:17:20 -0700
commitefcded334c5e17ac2f328ee4af008925ae3b3d08 (patch)
tree4a0ab8d9735ade001312e0846b29a3f41daff05e /src/arch/mips/faults.hh
parentffeab063788c576f072026c153e7be497d20e8a9 (diff)
downloadgem5-efcded334c5e17ac2f328ee4af008925ae3b3d08.tar.xz
MIPS: Get rid of the unused "count" field in FaultVals.
Diffstat (limited to 'src/arch/mips/faults.hh')
-rw-r--r--src/arch/mips/faults.hh2
1 files changed, 0 insertions, 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<MachineCheckFault>