196c196
< FALRU::findVictim(Addr addr)
---
> FALRU::findVictim(Addr addr, std::vector<CacheBlk*>& evict_blks) const
198c198,204
< return tail;
---
> // The victim is always stored on the tail for the FALRU
> FALRUBlk* victim = tail;
>
> // There is only one eviction for this replacement
> evict_blks.push_back(victim);
>
> return victim;