summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2008-10-12 13:29:26 -0700
committerGabe Black <gblack@eecs.umich.edu>2008-10-12 13:29:26 -0700
commit3420ad7644b0f2e5dab9f99dfb4407be78e25305 (patch)
treec2a41a8a3b7029916f84c33d8c4a460a702e4fca
parent557bde43c331024eb5cecf4093a24a5b7a9cc266 (diff)
downloadgem5-3420ad7644b0f2e5dab9f99dfb4407be78e25305.tar.xz
X86: Make the bases for x86 fault class public.
-rw-r--r--src/arch/x86/faults.hh12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/arch/x86/faults.hh b/src/arch/x86/faults.hh
index 78a55d0e1..a54bc8ee9 100644
--- a/src/arch/x86/faults.hh
+++ b/src/arch/x86/faults.hh
@@ -317,7 +317,7 @@ namespace X86ISA
{}
};
- class AlignmentCheck : X86Fault
+ class AlignmentCheck : public X86Fault
{
public:
AlignmentCheck() :
@@ -325,7 +325,7 @@ namespace X86ISA
{}
};
- class MachineCheck : X86Abort
+ class MachineCheck : public X86Abort
{
public:
MachineCheck() :
@@ -333,7 +333,7 @@ namespace X86ISA
{}
};
- class SIMDFloatingPointFault : X86Fault
+ class SIMDFloatingPointFault : public X86Fault
{
public:
SIMDFloatingPointFault() :
@@ -341,7 +341,7 @@ namespace X86ISA
{}
};
- class SecurityException : X86FaultBase
+ class SecurityException : public X86FaultBase
{
public:
SecurityException() :
@@ -349,7 +349,7 @@ namespace X86ISA
{}
};
- class ExternalInterrupt : X86Interrupt
+ class ExternalInterrupt : public X86Interrupt
{
public:
ExternalInterrupt() :
@@ -357,7 +357,7 @@ namespace X86ISA
{}
};
- class SoftwareInterrupt : X86Interrupt
+ class SoftwareInterrupt : public X86Interrupt
{
public:
SoftwareInterrupt() :