diff options
Diffstat (limited to 'src/cpu/o3/lsq_unit.hh')
-rw-r--r-- | src/cpu/o3/lsq_unit.hh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cpu/o3/lsq_unit.hh b/src/cpu/o3/lsq_unit.hh index 8a0e3b629..158235db8 100644 --- a/src/cpu/o3/lsq_unit.hh +++ b/src/cpu/o3/lsq_unit.hh @@ -1030,9 +1030,9 @@ LSQUnit<Impl>::read(const RequestPtr &req, DPRINTF(LSQUnit, "created validation/expose" " request for inst [sn:%lli]" "req=%#x, reqLow=%#x, reqHigh=%#x\n", - load_inst->seqNum, (Addr)(load_inst->postReq), - (Addr)(load_inst->postSreqLow), - (Addr)(load_inst->postSreqHigh)); + load_inst->seqNum, load_inst->postReq->getVaddr(), + load_inst->postSreqLow->getVaddr(), + load_inst->postSreqHigh->getVaddr()); } else { load_inst->setExposeCompleted(); load_inst->needPostFetch(false); |