diff options
Diffstat (limited to 'src/mem/cache/cache.cc')
-rw-r--r-- | src/mem/cache/cache.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mem/cache/cache.cc b/src/mem/cache/cache.cc index 9ee935961..cbc0ed90a 100644 --- a/src/mem/cache/cache.cc +++ b/src/mem/cache/cache.cc @@ -1816,6 +1816,7 @@ Cache::invalidateVisitor(CacheBlk &blk) CacheBlk* Cache::allocateBlock(Addr addr, bool is_secure, PacketList &writebacks) { + // Find replacement victim CacheBlk *blk = tags->findVictim(addr); // It is valid to return nullptr if there is no victim @@ -2802,6 +2803,7 @@ Cache* CacheParams::create() { assert(tags); + assert(replacement_policy); return new Cache(this); } |