arch: Add a bunch of missing override specifiers.

Missing override on methods which are overriding virtual methods causes
warnings/errors on certain compilers.

Change-Id: I16f565fa07bfcb399a0209cd87f1f9729cd89b2e
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/25223
Reviewed-by: Giacomo Travaglini <giacomo.travaglini@arm.com>
Maintainer: Gabe Black <gabeblack@google.com>
Tested-by: kokoro <noreply+kokoro@google.com>
This commit is contained in:
Gabe Black
2020-02-09 17:56:14 -08:00
parent 7515106ebe
commit 4aa277a865
13 changed files with 46 additions and 48 deletions

View File

@@ -44,7 +44,7 @@ class MipsLinuxProcess : public MipsProcess
/// Constructor.
MipsLinuxProcess(ProcessParams * params, ObjectFile *objFile);
virtual SyscallDesc* getDesc(int callnum);
SyscallDesc* getDesc(int callnum) override;
/// The target system's hostname.
static const char *hostname;