Added an x86 dyninst
authorGabe Black <gblack@eecs.umich.edu>
Mon, 5 Mar 2007 14:55:45 +0000 (14:55 +0000)
committerGabe Black <gblack@eecs.umich.edu>
Mon, 5 Mar 2007 14:55:45 +0000 (14:55 +0000)
--HG--
extra : convert_revision : 2317e9bb0bcf8010ab5d02019f7a14eeb7b1459c

src/cpu/o3/dyn_inst.hh

index 2795134934661195fd005e48656854f8e3cb7c06..c37f8007e5adba5698b307c79acfa2c7c8767654 100644 (file)
     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