summaryrefslogtreecommitdiff
path: root/src/cpu/o3/dyn_inst.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/cpu/o3/dyn_inst.hh')
-rw-r--r--src/cpu/o3/dyn_inst.hh15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/cpu/o3/dyn_inst.hh b/src/cpu/o3/dyn_inst.hh
index 24c59a25d..01886606e 100644
--- a/src/cpu/o3/dyn_inst.hh
+++ b/src/cpu/o3/dyn_inst.hh
@@ -429,21 +429,6 @@ class BaseO3DynInst : public BaseDynInst<Impl>
this->cpu->setCCReg(this->_destRegIdx[idx], val);
BaseDynInst<Impl>::setCCRegOperand(si, idx, val);
}
-
-#if THE_ISA == MIPS_ISA
- RegVal
- readRegOtherThread(const RegId& misc_reg, ThreadID tid) override
- {
- panic("MIPS MT not defined for O3 CPU.\n");
- return 0;
- }
-
- void
- setRegOtherThread(const RegId& misc_reg, RegVal val, ThreadID tid) override
- {
- panic("MIPS MT not defined for O3 CPU.\n");
- }
-#endif
};
#endif // __CPU_O3_ALPHA_DYN_INST_HH__