From: Nikos Nikoleris Date: Tue, 21 Feb 2017 14:14:44 +0000 (+0000) Subject: mem: Remove unused type BlkList from the cache and the tags X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e8723310ef08e310715bb83c6e5aaae8829214e4;p=gem5.git mem: Remove unused type BlkList from the cache and the tags Change-Id: If9ebb8488e8db587482ecfa99d2c12cfe5734fb9 Reviewed-by: Andreas Hansson Signed-off-by: Andreas Sandberg --- diff --git a/src/mem/cache/cache.hh b/src/mem/cache/cache.hh index 7f9130d62..e5c8ab61f 100644 --- a/src/mem/cache/cache.hh +++ b/src/mem/cache/cache.hh @@ -73,11 +73,6 @@ class BasePrefetcher; */ class Cache : public BaseCache { - public: - - /** A typedef for a list of CacheBlk pointers. */ - typedef std::list BlkList; - protected: /** diff --git a/src/mem/cache/tags/base_set_assoc.hh b/src/mem/cache/tags/base_set_assoc.hh index 40ff5ca5d..12be07206 100644 --- a/src/mem/cache/tags/base_set_assoc.hh +++ b/src/mem/cache/tags/base_set_assoc.hh @@ -78,8 +78,6 @@ class BaseSetAssoc : public BaseTags public: /** Typedef the block type used in this tag store. */ typedef CacheBlk BlkType; - /** Typedef for a list of pointers to the local block class. */ - typedef std::list BlkList; /** Typedef the set type used in this tag store. */ typedef CacheSet SetType; diff --git a/src/mem/cache/tags/fa_lru.hh b/src/mem/cache/tags/fa_lru.hh index 49f10a0aa..89e15d83e 100644 --- a/src/mem/cache/tags/fa_lru.hh +++ b/src/mem/cache/tags/fa_lru.hh @@ -90,8 +90,6 @@ class FALRU : public BaseTags public: /** Typedef the block type used in this class. */ typedef FALRUBlk BlkType; - /** Typedef a list of pointers to the local block type. */ - typedef std::list BlkList; protected: /** Array of pointers to blocks at the cache size boundaries. */