diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2008-10-09 00:09:26 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2008-10-09 00:09:26 -0700 |
commit | f57c286d2c3fceae84fde60f148f70305c846772 (patch) | |
tree | fea4caad117c131e2d79b9e714b3026127b5faa6 /src/cpu/o3/sparc/impl.hh | |
parent | e09c403d326488dbc709e3bddc8d497481273950 (diff) | |
download | gem5-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/sparc/impl.hh')
-rw-r--r-- | src/cpu/o3/sparc/impl.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cpu/o3/sparc/impl.hh b/src/cpu/o3/sparc/impl.hh index bcf8e5cc6..cf0e33e42 100644 --- a/src/cpu/o3/sparc/impl.hh +++ b/src/cpu/o3/sparc/impl.hh @@ -38,7 +38,7 @@ // Forward declarations. template <class Impl> -class SparcDynInst; +class BaseO3DynInst; template <class Impl> class FullO3CPU; @@ -60,7 +60,7 @@ struct SparcSimpleImpl typedef SimpleCPUPolicy<SparcSimpleImpl> CPUPol; /** The DynInst type to be used. */ - typedef SparcDynInst<SparcSimpleImpl> DynInst; + typedef BaseO3DynInst<SparcSimpleImpl> DynInst; /** The refcounted DynInst pointer to be used. In most cases this is * what should be used, and not DynInst *. |