projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ffeab06
)
MIPS: Get rid of the unused "count" field in FaultVals.
author
Gabe Black
<gblack@eecs.umich.edu>
Mon, 19 Sep 2011 13:17:20 +0000
(06:17 -0700)
committer
Gabe Black
<gblack@eecs.umich.edu>
Mon, 19 Sep 2011 13:17:20 +0000
(06:17 -0700)
src/arch/mips/faults.hh
patch
|
blob
|
history
diff --git
a/src/arch/mips/faults.hh
b/src/arch/mips/faults.hh
index cd1cd7040faf4a7d3597a8afb785a4b0e2faffa4..0b3d6ce30853e9b57b1869a62af3aa51113570f3 100644
(file)
--- 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>