mem-cache: Remove mumBlock redundant initialiation from FALRU
Change-Id: Id3afec0a62446d6d0f44ccb655032343037637e0 Reviewed-by: Curtis Dunham <curtis.dunham@arm.com> Reviewed-on: https://gem5-review.googlesource.com/8281 Reviewed-by: Daniel Carvalho <odanrc@yahoo.com.br> Maintainer: Nikos Nikoleris <nikos.nikoleris@arm.com>
This commit is contained in:
2
src/mem/cache/tags/base.hh
vendored
2
src/mem/cache/tags/base.hh
vendored
@@ -91,7 +91,7 @@ class BaseTags : public ClockedObject
|
||||
bool warmedUp;
|
||||
|
||||
/** the number of blocks in the cache */
|
||||
unsigned numBlocks;
|
||||
const unsigned numBlocks;
|
||||
|
||||
// Statistics
|
||||
/**
|
||||
|
||||
2
src/mem/cache/tags/fa_lru.cc
vendored
2
src/mem/cache/tags/fa_lru.cc
vendored
@@ -73,8 +73,6 @@ FALRU::FALRU(const Params *p)
|
||||
cacheMask = 0;
|
||||
}
|
||||
|
||||
numBlocks = size/blkSize;
|
||||
|
||||
blks = new FALRUBlk[numBlocks];
|
||||
head = &(blks[0]);
|
||||
tail = &(blks[numBlocks-1]);
|
||||
|
||||
Reference in New Issue
Block a user