dyn_inst.hh (2935:d1223a6c9156) dyn_inst.hh (2978:199dcea84fc4)
1/*
2 * Copyright (c) 2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 27 unchanged lines hidden (view full) ---

36#if THE_ISA == ALPHA_ISA
37 template <class Impl> class AlphaDynInst;
38 struct AlphaSimpleImpl;
39 typedef AlphaDynInst<AlphaSimpleImpl> O3DynInst;
40#elif THE_ISA == MIPS_ISA
41 template <class Impl> class MipsDynInst;
42 struct MipsSimpleImpl;
43 typedef MipsDynInst<MipsSimpleImpl> O3DynInst;
1/*
2 * Copyright (c) 2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 27 unchanged lines hidden (view full) ---

36#if THE_ISA == ALPHA_ISA
37 template <class Impl> class AlphaDynInst;
38 struct AlphaSimpleImpl;
39 typedef AlphaDynInst<AlphaSimpleImpl> O3DynInst;
40#elif THE_ISA == MIPS_ISA
41 template <class Impl> class MipsDynInst;
42 struct MipsSimpleImpl;
43 typedef MipsDynInst<MipsSimpleImpl> O3DynInst;
44#elif THE_ISA == SPARC_ISA
45 template <class Impl> class SparcDynInst;
46 struct SparcSimpleImpl;
47 typedef SparcDynInst<SparcSimpleImpl> O3DynInst;
44#else
45 #error "O3DynInst not defined for this ISA"
46#endif
47
48#endif // __CPU_O3_DYN_INST_HH__
48#else
49 #error "O3DynInst not defined for this ISA"
50#endif
51
52#endif // __CPU_O3_DYN_INST_HH__