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:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user