summaryrefslogtreecommitdiff
path: root/src/cpu/o3/mips/impl.hh
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2008-10-09 00:08:50 -0700
committerGabe Black <gblack@eecs.umich.edu>2008-10-09 00:08:50 -0700
commite09c403d326488dbc709e3bddc8d497481273950 (patch)
treecf82abebfc6e793cbc9526ed7279329e3fcd9199 /src/cpu/o3/mips/impl.hh
parent975c9e3af869fb2905933c93c4d657e4d7187dad (diff)
downloadgem5-e09c403d326488dbc709e3bddc8d497481273950.tar.xz
O3: Generalize the O3 CPU object so it isn't split out by ISA.
Diffstat (limited to 'src/cpu/o3/mips/impl.hh')
-rw-r--r--src/cpu/o3/mips/impl.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cpu/o3/mips/impl.hh b/src/cpu/o3/mips/impl.hh
index 481184006..dbaa4a276 100644
--- a/src/cpu/o3/mips/impl.hh
+++ b/src/cpu/o3/mips/impl.hh
@@ -42,7 +42,7 @@ template <class Impl>
class MipsDynInst;
template <class Impl>
-class MipsO3CPU;
+class FullO3CPU;
/** Implementation specific struct that defines several key types to the
* CPU, the stages within the CPU, the time buffers, and the DynInst.
@@ -69,7 +69,7 @@ struct MipsSimpleImpl
typedef RefCountingPtr<DynInst> DynInstPtr;
/** The O3CPU type to be used. */
- typedef MipsO3CPU<MipsSimpleImpl> O3CPU;
+ typedef FullO3CPU<MipsSimpleImpl> O3CPU;
/** Same typedef, but for CPUType. BaseDynInst may not always use
* an O3 CPU, so it's clearer to call it CPUType instead in that