Quick fix for the CPU not printing out the right address upon re-execution of a load that missed in the cache.

Split mem ops will solve this problem in the future.

--HG--
extra : convert_revision : 5bb921998aa0408d568030ef544b9905c4038bb2
This commit is contained in:
Kevin Lim
2006-04-14 11:59:18 -04:00
parent 48f2626eac
commit 2022800005

View File

@@ -478,7 +478,7 @@ SimpleCPU::read(Addr addr, T &data, unsigned flags)
}
if (traceData) {
traceData->setAddr(addr);
traceData->setAddr(data_read_req->getVaddr());
}
// @todo: Figure out a way to create a Fault from the packet result.