69d68
< abstract = True
73,76c72,74
< class LRU(BaseSetAssoc):
< type = 'LRU'
< cxx_class = 'LRU'
< cxx_header = "mem/cache/tags/lru.hh"
---
> # Get replacement policy from the parent (cache)
> replacement_policy = Param.BaseReplacementPolicy(
> Parent.replacement_policy, "Replacement policy")
78,82d75
< class RandomRepl(BaseSetAssoc):
< type = 'RandomRepl'
< cxx_class = 'RandomRepl'
< cxx_header = "mem/cache/tags/random_repl.hh"
<