diff options
Diffstat (limited to 'src/arch/x86/faults.hh')
-rw-r--r-- | src/arch/x86/faults.hh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/arch/x86/faults.hh b/src/arch/x86/faults.hh index cfb654b62..7682953c1 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: |