diff options
author | Amin Farmahini <aminfar@gmail.com> | 2014-01-28 18:00:50 -0600 |
---|---|---|
committer | Amin Farmahini <aminfar@gmail.com> | 2014-01-28 18:00:50 -0600 |
commit | ffbdaa7cce32bfb18f0c97b9c5f19d1aa54da503 (patch) | |
tree | 8719d8b83bf57b012d3417d956e440a86726f9df /src/mem/cache/cache.hh | |
parent | 575a73f4a11432e11167537fb301dfc5d088810f (diff) | |
download | gem5-ffbdaa7cce32bfb18f0c97b9c5f19d1aa54da503.tar.xz |
mem: Remove redundant findVictim() input argument
The patch
(1) removes the redundant writeback argument from findVictim()
(2) fixes the description of access() function
Committed by: Nilay Vaish <nilay@cs.wisc.edu>
Diffstat (limited to 'src/mem/cache/cache.hh')
-rw-r--r-- | src/mem/cache/cache.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mem/cache/cache.hh b/src/mem/cache/cache.hh index 60f3650e7..3d7fc8fe3 100644 --- a/src/mem/cache/cache.hh +++ b/src/mem/cache/cache.hh @@ -195,9 +195,9 @@ class Cache : public BaseCache /** * Does all the processing necessary to perform the provided request. * @param pkt The memory request to perform. + * @param blk The cache block to be updated. * @param lat The latency of the access. * @param writebacks List for any writebacks that need to be performed. - * @param update True if the replacement data should be updated. * @return Boolean indicating whether the request was satisfied. */ bool access(PacketPtr pkt, BlkType *&blk, |