diff options
Diffstat (limited to 'sim/faults.hh')
-rw-r--r-- | sim/faults.hh | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/sim/faults.hh b/sim/faults.hh index e4880f820..d0bf78815 100644 --- a/sim/faults.hh +++ b/sim/faults.hh @@ -71,10 +71,8 @@ class MachineCheckFault : public FaultBase { private: static FaultName _name; - static FaultStat _stat; public: FaultName name() {return _name;} - FaultStat & stat() {return _stat;} bool isMachineCheckFault() {return true;} }; @@ -82,10 +80,8 @@ class AlignmentFault : public FaultBase { private: static FaultName _name; - static FaultStat _stat; public: FaultName name() {return _name;} - FaultStat & stat() {return _stat;} bool isAlignmentFault() {return true;} }; |