diff --git a/src/arch/x86/faults.hh b/src/arch/x86/faults.hh index cfb654b628..7682953c1e 100644 --- a/src/arch/x86/faults.hh +++ b/src/arch/x86/faults.hh @@ -160,11 +160,6 @@ namespace X86ISA } }; - static inline Fault genMachineCheckFault() - { - panic("Machine check fault not implemented in x86!\n"); - } - // Below is a summary of the interrupt/exception information in the // architecture manuals. @@ -368,6 +363,11 @@ namespace X86ISA {} }; + static inline Fault genMachineCheckFault() + { + return new MachineCheck; + } + class SIMDFloatingPointFault : public X86Fault { public: