diff options
Diffstat (limited to 'src/arch/mips/decoder.hh')
-rw-r--r-- | src/arch/mips/decoder.hh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/arch/mips/decoder.hh b/src/arch/mips/decoder.hh index 95385961d..4857eb353 100644 --- a/src/arch/mips/decoder.hh +++ b/src/arch/mips/decoder.hh @@ -31,11 +31,11 @@ #ifndef __ARCH_MIPS_DECODER_HH__ #define __ARCH_MIPS_DECODER_HH__ +#include "arch/generic/decode_cache.hh" #include "arch/mips/types.hh" #include "base/misc.hh" #include "base/types.hh" -#include "cpu/decode_cache.hh" -#include "cpu/static_inst_fwd.hh" +#include "cpu/static_inst.hh" class ThreadContext; @@ -99,7 +99,7 @@ class Decoder protected: /// A cache of decoded instruction objects. - static DecodeCache defaultCache; + static GenericISA::BasicDecodeCache defaultCache; public: StaticInstPtr decodeInst(ExtMachInst mach_inst); |