diff options
Diffstat (limited to 'src/arch/arm/faults.hh')
-rw-r--r-- | src/arch/arm/faults.hh | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/arch/arm/faults.hh b/src/arch/arm/faults.hh index 8d72dee91..de5061bed 100644 --- a/src/arch/arm/faults.hh +++ b/src/arch/arm/faults.hh @@ -546,15 +546,6 @@ class SystemError : public ArmFaultVals<SystemError> }; // A fault that flushes the pipe, excluding the faulting instructions -class FlushPipe : public ArmFaultVals<FlushPipe> -{ - public: - FlushPipe() {} - void invoke(ThreadContext *tc, const StaticInstPtr &inst = - StaticInst::nullStaticInstPtr) override; -}; - -// A fault that flushes the pipe, excluding the faulting instructions class ArmSev : public ArmFaultVals<ArmSev> { public: @@ -592,7 +583,6 @@ template<> ArmFault::FaultVals ArmFaultVals<SecureMonitorTrap>::vals; template<> ArmFault::FaultVals ArmFaultVals<PCAlignmentFault>::vals; template<> ArmFault::FaultVals ArmFaultVals<SPAlignmentFault>::vals; template<> ArmFault::FaultVals ArmFaultVals<SystemError>::vals; -template<> ArmFault::FaultVals ArmFaultVals<FlushPipe>::vals; template<> ArmFault::FaultVals ArmFaultVals<ArmSev>::vals; |