summaryrefslogtreecommitdiff
path: root/src/cpu/o3/dyn_inst.hh
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2006-08-11 20:29:15 -0400
committerGabe Black <gblack@eecs.umich.edu>2006-08-11 20:29:15 -0400
commitfc8b4f52537dafdfe10a9be912fe3f069d8a570d (patch)
tree9db067defca7db052549a33cb6523fc07e168d37 /src/cpu/o3/dyn_inst.hh
parent95dc8e4d57d32f30ef86d40c24b4d78c3505f450 (diff)
downloadgem5-fc8b4f52537dafdfe10a9be912fe3f069d8a570d.tar.xz
Started to add support for O3 for sparc.
--HG-- extra : convert_revision : 3f94bda14024a09b9fbd7a5d13284d4987349ddf
Diffstat (limited to 'src/cpu/o3/dyn_inst.hh')
-rw-r--r--src/cpu/o3/dyn_inst.hh4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/cpu/o3/dyn_inst.hh b/src/cpu/o3/dyn_inst.hh
index 5f7caf79f..279513493 100644
--- a/src/cpu/o3/dyn_inst.hh
+++ b/src/cpu/o3/dyn_inst.hh
@@ -41,6 +41,10 @@
template <class Impl> class MipsDynInst;
struct MipsSimpleImpl;
typedef MipsDynInst<MipsSimpleImpl> O3DynInst;
+#elif THE_ISA == SPARC_ISA
+ template <class Impl> class SparcDynInst;
+ struct SparcSimpleImpl;
+ typedef SparcDynInst<SparcSimpleImpl> O3DynInst;
#else
#error "O3DynInst not defined for this ISA"
#endif