summaryrefslogtreecommitdiff
path: root/src/cpu/o3/mips/dyn_inst.cc
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2008-10-09 00:09:26 -0700
committerGabe Black <gblack@eecs.umich.edu>2008-10-09 00:09:26 -0700
commitf57c286d2c3fceae84fde60f148f70305c846772 (patch)
treefea4caad117c131e2d79b9e714b3026127b5faa6 /src/cpu/o3/mips/dyn_inst.cc
parente09c403d326488dbc709e3bddc8d497481273950 (diff)
downloadgem5-f57c286d2c3fceae84fde60f148f70305c846772.tar.xz
O3: Generaize the O3 dynamic instruction class so it isn't split out by ISA.
--HG-- rename : src/cpu/o3/dyn_inst.hh => src/cpu/o3/dyn_inst_decl.hh rename : src/cpu/o3/alpha/dyn_inst_impl.hh => src/cpu/o3/dyn_inst_impl.hh
Diffstat (limited to 'src/cpu/o3/mips/dyn_inst.cc')
-rwxr-xr-xsrc/cpu/o3/mips/dyn_inst.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cpu/o3/mips/dyn_inst.cc b/src/cpu/o3/mips/dyn_inst.cc
index 216aa7d2c..88205afaf 100755
--- a/src/cpu/o3/mips/dyn_inst.cc
+++ b/src/cpu/o3/mips/dyn_inst.cc
@@ -29,9 +29,9 @@
* Korey Sewell
*/
-#include "cpu/o3/mips/dyn_inst_impl.hh"
+#include "cpu/o3/dyn_inst_impl.hh"
#include "cpu/o3/mips/impl.hh"
// Force instantiation of MipsDynInst for all the implementations that
// are needed.
-template class MipsDynInst<MipsSimpleImpl>;
+template class BaseO3DynInst<MipsSimpleImpl>;