diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2007-03-05 14:55:45 +0000 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2007-03-05 14:55:45 +0000 |
commit | c7ab9f5bb2d3be5c7e751d5f9ef1953bb44389a0 (patch) | |
tree | 695dd156dda9e0eb35cb7daef76ad225af49da84 /src/cpu | |
parent | 7730af9503f1487ff2989f8a5f7708166f7b64f7 (diff) | |
download | gem5-c7ab9f5bb2d3be5c7e751d5f9ef1953bb44389a0.tar.xz |
Added an x86 dyninst
--HG--
extra : convert_revision : 2317e9bb0bcf8010ab5d02019f7a14eeb7b1459c
Diffstat (limited to 'src/cpu')
-rw-r--r-- | src/cpu/o3/dyn_inst.hh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/cpu/o3/dyn_inst.hh b/src/cpu/o3/dyn_inst.hh index 279513493..c37f8007e 100644 --- a/src/cpu/o3/dyn_inst.hh +++ b/src/cpu/o3/dyn_inst.hh @@ -45,6 +45,10 @@ template <class Impl> class SparcDynInst; struct SparcSimpleImpl; typedef SparcDynInst<SparcSimpleImpl> O3DynInst; +#elif THE_ISA == X86_ISA + template <class Impl> class X86DynInst; + struct X86SimpleImpl; + typedef X86DynInst<X86SimpleImpl> O3DynInst; #else #error "O3DynInst not defined for this ISA" #endif |