diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2006-05-14 23:53:29 -0400 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2006-05-14 23:53:29 -0400 |
commit | 9955ebd03c987077adf577c6d0b0b3a1667bade5 (patch) | |
tree | bfc8ab8b4a18b425337c0e61e0ce72840671a2ac /arch/mips/faults.hh | |
parent | 8db6dd370c82bb4edc6f3e229589226f2ff4b41c (diff) | |
download | gem5-9955ebd03c987077adf577c6d0b0b3a1667bade5.tar.xz |
Moved the UnimpFault to be global
--HG--
extra : convert_revision : a42224c70c475c1559e83b8a2ef71ff3b792a3ab
Diffstat (limited to 'arch/mips/faults.hh')
-rw-r--r-- | arch/mips/faults.hh | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/arch/mips/faults.hh b/arch/mips/faults.hh index b0d228090..0bdabe29e 100644 --- a/arch/mips/faults.hh +++ b/arch/mips/faults.hh @@ -264,26 +264,6 @@ class IntegerOverflowFault : public MipsFault FaultStat & countStat() {return _count;} }; -class UnimpFault : public MipsFault -{ - private: - std::string panicStr; - static FaultName _name; - static FaultVect _vect; - static FaultStat _count; - public: - UnimpFault(std::string _str) - : panicStr(_str) - { } - - FaultName name() {return _name;} - FaultVect vect() {return _vect;} - FaultStat & countStat() {return _count;} -#if FULL_SYSTEM - void invoke(ExecContext * xc); -#endif -}; - } // MipsISA namespace #endif // __FAULTS_HH__ |