diff options
author | Lisa Hsu <hsul@eecs.umich.edu> | 2008-11-04 11:35:57 -0500 |
---|---|---|
committer | Lisa Hsu <hsul@eecs.umich.edu> | 2008-11-04 11:35:57 -0500 |
commit | 4ab52cb986962f7c0fb0fa07de10d8cdfb51458a (patch) | |
tree | 842022c71384f5d59380d0ed32ad182fe7f6b99f /src/mem/cache/cache_impl.hh | |
parent | dd99ff23c6a71f7173014b5008d0cf12b7ef223a (diff) | |
download | gem5-4ab52cb986962f7c0fb0fa07de10d8cdfb51458a.tar.xz |
Change the findBlock(addr, lat) to accessBlock, which I think has better connotations for what is really happening and how it should be used.
Diffstat (limited to 'src/mem/cache/cache_impl.hh')
-rw-r--r-- | src/mem/cache/cache_impl.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mem/cache/cache_impl.hh b/src/mem/cache/cache_impl.hh index 45faa84ce..af179ff91 100644 --- a/src/mem/cache/cache_impl.hh +++ b/src/mem/cache/cache_impl.hh @@ -269,7 +269,7 @@ Cache<TagStore>::access(PacketPtr pkt, BlkType *&blk, return false; } - blk = tags->findBlock(pkt->getAddr(), lat); + blk = tags->accessBlock(pkt->getAddr(), lat); if (prefetchAccess) { //We are determining prefetches on access stream, call prefetcher |