summaryrefslogtreecommitdiff
path: root/src/mem/cache/cache_impl.hh
diff options
context:
space:
mode:
authorLisa Hsu <hsul@eecs.umich.edu>2008-11-04 11:35:57 -0500
committerLisa Hsu <hsul@eecs.umich.edu>2008-11-04 11:35:57 -0500
commit4ab52cb986962f7c0fb0fa07de10d8cdfb51458a (patch)
tree842022c71384f5d59380d0ed32ad182fe7f6b99f /src/mem/cache/cache_impl.hh
parentdd99ff23c6a71f7173014b5008d0cf12b7ef223a (diff)
downloadgem5-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.hh2
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