203c203,204
< * Find replacement victim based on address.
---
> * Find replacement victim based on address. The list of evicted blocks
> * only contains the victim.
205a207
> * @param evict_blks Cache blocks to be evicted.
208c210,211
< CacheBlk* findVictim(Addr addr) override
---
> CacheBlk* findVictim(Addr addr, std::vector<CacheBlk*>& evict_blks) const
> override
217a221,223
> // There is only one eviction for this replacement
> evict_blks.push_back(victim);
>
233c239
< const std::vector<CacheBlk*> getPossibleLocations(Addr addr)
---
> const std::vector<CacheBlk*> getPossibleLocations(Addr addr) const