scons: Add missing override to appease clang

Make clang happy...again.
This commit is contained in:
Andreas Hansson
2016-02-23 03:27:20 -05:00
parent 5a88f0931f
commit 4619f0ee8b
13 changed files with 117 additions and 114 deletions

View File

@@ -328,13 +328,13 @@ class CheckerCPU : public BaseCPU, public ExecContext
}
#if THE_ISA == MIPS_ISA
MiscReg readRegOtherThread(int misc_reg, ThreadID tid)
MiscReg readRegOtherThread(int misc_reg, ThreadID tid) override
{
panic("MIPS MT not defined for CheckerCPU.\n");
return 0;
}
void setRegOtherThread(int misc_reg, MiscReg val, ThreadID tid)
void setRegOtherThread(int misc_reg, MiscReg val, ThreadID tid) override
{
panic("MIPS MT not defined for CheckerCPU.\n");
}