diff options
author | Steve Reinhardt <steve.reinhardt@amd.com> | 2009-04-20 18:54:02 -0700 |
---|---|---|
committer | Steve Reinhardt <steve.reinhardt@amd.com> | 2009-04-20 18:54:02 -0700 |
commit | 3083268d60ba28cf011eadd6d6e4f400e6686cc3 (patch) | |
tree | 7dbd37a140a59acacaf46101b7ea1e8fb5a8dbfe /src/mem/cache | |
parent | 7f8ea68a309790821d81500d1ba15d4ceef25933 (diff) | |
download | gem5-3083268d60ba28cf011eadd6d6e4f400e6686cc3.tar.xz |
request: rename INST_READ to INST_FETCH.
Diffstat (limited to 'src/mem/cache')
-rw-r--r-- | src/mem/cache/prefetch/base.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mem/cache/prefetch/base.cc b/src/mem/cache/prefetch/base.cc index 365ce6727..f20a306cb 100644 --- a/src/mem/cache/prefetch/base.cc +++ b/src/mem/cache/prefetch/base.cc @@ -170,7 +170,7 @@ BasePrefetcher::getPacket() Tick BasePrefetcher::notify(PacketPtr &pkt, Tick time) { - if (!pkt->req->isUncacheable() && !(pkt->req->isInstRead() && onlyData)) { + if (!pkt->req->isUncacheable() && !(pkt->req->isInstFetch() && onlyData)) { // Calculate the blk address Addr blk_addr = pkt->getAddr() & ~(Addr)(blkSize-1); |