diff options
author | Andreas Sandberg <andreas.sandberg@arm.com> | 2015-11-15 21:28:00 +0000 |
---|---|---|
committer | Andreas Sandberg <andreas.sandberg@arm.com> | 2015-11-15 21:28:00 +0000 |
commit | 2a6fe970922ca174a872dd00be9c3371f646de10 (patch) | |
tree | c937db797e9a20e7e506c2f323f96524dfef8dd7 /src | |
parent | 95f20a29051ec9065b9a9ea095ee697c4df10175 (diff) | |
download | gem5-2a6fe970922ca174a872dd00be9c3371f646de10.tar.xz |
arm: Add missing explicit overrides for classic caches
Make clang when compiling on OSX.
Diffstat (limited to 'src')
-rw-r--r-- | src/mem/cache/cache.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mem/cache/cache.hh b/src/mem/cache/cache.hh index eb40ddb18..5ea72831b 100644 --- a/src/mem/cache/cache.hh +++ b/src/mem/cache/cache.hh @@ -304,7 +304,7 @@ class Cache : public BaseCache * @param cmd Command of the incoming requesting packet * @return Whether we should allocate on the fill */ - inline bool allocOnFill(MemCmd cmd) const + inline bool allocOnFill(MemCmd cmd) const override { return clusivity == Enums::mostly_incl || cmd == MemCmd::WriteLineReq || |