mem: Remove unused type BlkList from the cache and the tags

Change-Id: If9ebb8488e8db587482ecfa99d2c12cfe5734fb9
Reviewed-by: Andreas Hansson <andreas.hansson@arm.com>
Signed-off-by: Andreas Sandberg <andreas.sandberg@arm.com>
This commit is contained in:
Nikos Nikoleris 2017-02-21 14:14:44 +00:00
parent da1ddb9aa7
commit e8723310ef
3 changed files with 0 additions and 9 deletions

View file

@ -73,11 +73,6 @@ class BasePrefetcher;
*/
class Cache : public BaseCache
{
public:
/** A typedef for a list of CacheBlk pointers. */
typedef std::list<CacheBlk*> BlkList;
protected:
/**

View file

@ -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<BlkType*> BlkList;
/** Typedef the set type used in this tag store. */
typedef CacheSet<CacheBlk> SetType;

View file

@ -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<FALRUBlk*> BlkList;
protected:
/** Array of pointers to blocks at the cache size boundaries. */