arch-mips: added missing override specifier (o3)
Change-Id: Ic538825a2964fd62def672b933a83067a15bd12a Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/17648 Reviewed-by: Jason Lowe-Power <jason@lowepower.com> Maintainer: Jason Lowe-Power <jason@lowepower.com>
This commit is contained in:
@@ -432,14 +432,14 @@ class BaseO3DynInst : public BaseDynInst<Impl>
|
||||
|
||||
#if THE_ISA == MIPS_ISA
|
||||
RegVal
|
||||
readRegOtherThread(const RegId& misc_reg, ThreadID tid)
|
||||
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)
|
||||
setRegOtherThread(const RegId& misc_reg, RegVal val, ThreadID tid) override
|
||||
{
|
||||
panic("MIPS MT not defined for O3 CPU.\n");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user