diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2011-09-19 05:53:54 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2011-09-19 05:53:54 -0700 |
commit | 49967ed26833d97a373be150ab8eeae10612e48f (patch) | |
tree | e5f7c27cf00004d012be0102e932facda394c9e9 /src | |
parent | 3eca0a2bc9d8679a05dd92b5aec6e6358aab3681 (diff) | |
download | gem5-49967ed26833d97a373be150ab8eeae10612e48f.tar.xz |
MIPS: Get rid of the unused (and partially defined) CacheError fault.
Diffstat (limited to 'src')
-rw-r--r-- | src/arch/mips/faults.hh | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/arch/mips/faults.hh b/src/arch/mips/faults.hh index 616886745..028ba9e43 100644 --- a/src/arch/mips/faults.hh +++ b/src/arch/mips/faults.hh @@ -226,23 +226,6 @@ class DtbAcvFault : public MipsFault FaultStat & countStat() {return _count;} }; -class CacheErrorFault : public MipsFault -{ - private: - Addr vaddr; - static FaultName _name; - static FaultVect _vect; - static FaultStat _count; - public: - FaultName name() const {return _name;} - FaultVect vect() {return _vect;} - FaultStat & countStat() {return _count;} - void invoke(ThreadContext * tc, - StaticInstPtr inst = StaticInst::nullStaticInstPtr); -}; - - - static inline Fault genMachineCheckFault() { |