X86: Implement genMachineCheckFault.

Even though this shouldn't ever be used, it might get called speculatively and
shouldn't panic.
This commit is contained in:
Gabe Black
2010-10-22 00:24:08 -07:00
parent 255685534a
commit 23f6196d61

View File

@@ -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: