From 5084b90e2af6e5bfad3119b4431a3b063ef3b799 Mon Sep 17 00:00:00 2001 From: Andrea Mondelli Date: Mon, 25 Mar 2019 12:41:54 -0400 Subject: 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 Maintainer: Jason Lowe-Power --- src/cpu/o3/dyn_inst.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/cpu/o3') diff --git a/src/cpu/o3/dyn_inst.hh b/src/cpu/o3/dyn_inst.hh index 640ebf850..24c59a25d 100644 --- a/src/cpu/o3/dyn_inst.hh +++ b/src/cpu/o3/dyn_inst.hh @@ -432,14 +432,14 @@ class BaseO3DynInst : public BaseDynInst #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"); } -- cgit v1.2.3