From 0d9ee17012584e0858d92f663dae3587a10842c1 Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Mon, 19 Sep 2011 06:17:21 -0700 Subject: [PATCH] MIPS: Get rid of skipFaultInstruction and setRestartAddress. Neither of these functions were used. --- src/arch/mips/faults.hh | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/arch/mips/faults.hh b/src/arch/mips/faults.hh index 378ae59f9..3278aebb2 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,