diff --git a/src/arch/mips/faults.hh b/src/arch/mips/faults.hh index 378ae59f9a..3278aebb2e 100644 --- a/src/arch/mips/faults.hh +++ b/src/arch/mips/faults.hh @@ -46,9 +46,6 @@ typedef const Addr FaultVect; class MipsFaultBase : public FaultBase { - protected: - virtual bool skipFaultingInstruction() {return false;} - virtual bool setRestartAddress() {return true;} public: struct FaultVals { @@ -198,8 +195,6 @@ class ThreadFault : public MipsFault class IntegerOverflowFault : public MipsFault { - protected: - bool skipFaultingInstruction() {return true;} public: #if FULL_SYSTEM void invoke(ThreadContext * tc, @@ -209,8 +204,6 @@ class IntegerOverflowFault : public MipsFault class InterruptFault : public MipsFault { - protected: - bool setRestartAddress() {return false;} public: #if FULL_SYSTEM void invoke(ThreadContext * tc,