diff options
author | Jason Lowe-Power <jason@lowepower.com> | 2018-03-23 10:34:02 -0700 |
---|---|---|
committer | Jason Lowe-Power <jason@lowepower.com> | 2018-03-23 18:12:14 +0000 |
commit | f6a28e5fc2e698cb7c6f35bb2476a1cce9f689d2 (patch) | |
tree | a219ffd5948a338f33608a66728e71519a3f456e /src/mem/cache/replacement_policies | |
parent | 9f37f28582bd7303a054af52d86aeff466b54637 (diff) | |
download | gem5-f6a28e5fc2e698cb7c6f35bb2476a1cce9f689d2.tar.xz |
mem-cache: fix missing overrides in repl policies
Change-Id: I67759a4532e8a46c1643d4c3a9c546ad6b565b81
Signed-off-by: Jason Lowe-Power <jason@lowepower.com>
Reviewed-on: https://gem5-review.googlesource.com/9321
Reviewed-by: Nikos Nikoleris <nikos.nikoleris@arm.com>
Maintainer: Nikos Nikoleris <nikos.nikoleris@arm.com>
Diffstat (limited to 'src/mem/cache/replacement_policies')
-rw-r--r-- | src/mem/cache/replacement_policies/lru_rp.hh | 4 | ||||
-rw-r--r-- | src/mem/cache/replacement_policies/mru_rp.hh | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/mem/cache/replacement_policies/lru_rp.hh b/src/mem/cache/replacement_policies/lru_rp.hh index 3e5efe61f..2dd7e86f0 100644 --- a/src/mem/cache/replacement_policies/lru_rp.hh +++ b/src/mem/cache/replacement_policies/lru_rp.hh @@ -62,7 +62,7 @@ class LRURP : public BaseReplacementPolicy * * @param blk Cache block to be touched. */ - void touch(CacheBlk *blk); + void touch(CacheBlk *blk) override; /** * Reset replacement data for a block. Used when a block is inserted. @@ -70,7 +70,7 @@ class LRURP : public BaseReplacementPolicy * * @param blk Cache block to be reset. */ - void reset(CacheBlk *blk); + void reset(CacheBlk *blk) override; /** * Find replacement victim using LRU timestamps. diff --git a/src/mem/cache/replacement_policies/mru_rp.hh b/src/mem/cache/replacement_policies/mru_rp.hh index d947d7cb3..fd9a29dff 100644 --- a/src/mem/cache/replacement_policies/mru_rp.hh +++ b/src/mem/cache/replacement_policies/mru_rp.hh @@ -62,7 +62,7 @@ class MRURP : public BaseReplacementPolicy * * @param blk Cache block to be touched. */ - void touch(CacheBlk *blk); + void touch(CacheBlk *blk) override; /** * Reset replacement data for a block. Used when a block is inserted. @@ -70,7 +70,7 @@ class MRURP : public BaseReplacementPolicy * * @param blk Cache block to be reset. */ - void reset(CacheBlk *blk); + void reset(CacheBlk *blk) override; /** * Find replacement victim using access timestamps. |