diff options
author | Andreas Hansson <andreas.hansson@arm.com> | 2016-02-23 03:27:20 -0500 |
---|---|---|
committer | Andreas Hansson <andreas.hansson@arm.com> | 2016-02-23 03:27:20 -0500 |
commit | 4619f0ee8bf2cd3f05f727b56c1e449b4bfecce1 (patch) | |
tree | 8a3a8f1938cce3fab1b897ba7fb32d45e481f2e1 /src/dev/mips/malta.hh | |
parent | 5a88f0931fa1e222ed3ac3aff4046721c593ee3e (diff) | |
download | gem5-4619f0ee8bf2cd3f05f727b56c1e449b4bfecce1.tar.xz |
scons: Add missing override to appease clang
Make clang happy...again.
Diffstat (limited to 'src/dev/mips/malta.hh')
-rwxr-xr-x | src/dev/mips/malta.hh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/dev/mips/malta.hh b/src/dev/mips/malta.hh index 205abce27..de2e8617c 100755 --- a/src/dev/mips/malta.hh +++ b/src/dev/mips/malta.hh @@ -87,22 +87,22 @@ class Malta : public Platform /** * Cause the cpu to post a serial interrupt to the CPU. */ - virtual void postConsoleInt(); + void postConsoleInt() override; /** * Clear a posted CPU interrupt (id=55) */ - virtual void clearConsoleInt(); + void clearConsoleInt() override; /** * Cause the chipset to post a cpi interrupt to the CPU. */ - virtual void postPciInt(int line); + void postPciInt(int line) override; /** * Clear a posted PCI->CPU interrupt */ - virtual void clearPciInt(int line); + void clearPciInt(int line) override; virtual Addr pciToDma(Addr pciAddr) const; |