summaryrefslogtreecommitdiff
path: root/src/cpu/o3/mips/impl.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/cpu/o3/mips/impl.hh')
-rw-r--r--src/cpu/o3/mips/impl.hh5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/cpu/o3/mips/impl.hh b/src/cpu/o3/mips/impl.hh
index dbaa4a276..78afd1387 100644
--- a/src/cpu/o3/mips/impl.hh
+++ b/src/cpu/o3/mips/impl.hh
@@ -36,10 +36,9 @@
#include "cpu/o3/cpu_policy.hh"
-
// Forward declarations.
template <class Impl>
-class MipsDynInst;
+class BaseO3DynInst;
template <class Impl>
class FullO3CPU;
@@ -61,7 +60,7 @@ struct MipsSimpleImpl
typedef SimpleCPUPolicy<MipsSimpleImpl> CPUPol;
/** The DynInst type to be used. */
- typedef MipsDynInst<MipsSimpleImpl> DynInst;
+ typedef BaseO3DynInst<MipsSimpleImpl> DynInst;
/** The refcounted DynInst pointer to be used. In most cases this is
* what should be used, and not DynInst *.