diff options
author | Andrea Mondelli <Andrea.Mondelli@ucf.edu> | 2019-02-04 15:21:40 -0500 |
---|---|---|
committer | Andrea Mondelli <Andrea.Mondelli@ucf.edu> | 2019-02-05 23:27:57 +0000 |
commit | 1989ce99056885a46fd12c9c9e4c4fbd1045718e (patch) | |
tree | 955bdc3e771fd10c4a33d7662f4887b021d065bb /src/cpu/minor | |
parent | 02d2d7b1e0fcbdc96012c31a9be0ae2a187d4d44 (diff) | |
download | gem5-1989ce99056885a46fd12c9c9e4c4fbd1045718e.tar.xz |
misc: added missing override specifier
Added missing specifier for various virtual functions.
Change-Id: I4783e92d78789a9ae182fad79aadceafb00b2458
Reviewed-on: https://gem5-review.googlesource.com/c/16103
Reviewed-by: Hoa Nguyen <hoanguyen@ucdavis.edu>
Reviewed-by: Jason Lowe-Power <jason@lowepower.com>
Maintainer: Jason Lowe-Power <jason@lowepower.com>
Diffstat (limited to 'src/cpu/minor')
-rw-r--r-- | src/cpu/minor/exec_context.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/minor/exec_context.hh b/src/cpu/minor/exec_context.hh index 34bd71dfb..179883ecc 100644 --- a/src/cpu/minor/exec_context.hh +++ b/src/cpu/minor/exec_context.hh @@ -204,7 +204,7 @@ class ExecContext : public ::ExecContext void setVecPredRegOperand(const StaticInst *si, int idx, - const TheISA::VecPredRegContainer& val) + const TheISA::VecPredRegContainer& val) override { const RegId& reg = si->destRegIdx(idx); assert(reg.isVecPredReg()); |