93,112d92
< template<class Impl>
< bool
< FullO3CPU<Impl>::IcachePort::recvTimingResp(PacketPtr pkt)
< {
< DPRINTF(O3CPU, "Fetch unit received timing\n");
< // We shouldn't ever get a cacheable block in Modified state
< assert(pkt->req->isUncacheable() ||
< !(pkt->cacheResponding() && !pkt->hasSharers()));
< fetch->processCacheCompletion(pkt);
<
< return true;
< }
<
< template<class Impl>
< void
< FullO3CPU<Impl>::IcachePort::recvReqRetry()
< {
< fetch->recvReqRetry();
< }
<
151,152d130
< icachePort(&fetch, this),
<
175c153
< checker->setIcachePort(&icachePort);
---
> checker->setIcachePort(&this->fetch.getInstPort());