summaryrefslogtreecommitdiff
path: root/src/cpu/o3/lsq_unit_impl.hh
diff options
context:
space:
mode:
authorKevin Lim <ktlim@umich.edu>2007-08-21 16:16:56 -0700
committerKevin Lim <ktlim@umich.edu>2007-08-21 16:16:56 -0700
commite1054170b54c37043d768d454f7b0eafcf1c119e (patch)
tree73ec058e2ad1a9dd4ac24cce32e1ac422c5b408f /src/cpu/o3/lsq_unit_impl.hh
parent3555b2aecca85457d4ce5899ebafd2a7cde08e53 (diff)
downloadgem5-e1054170b54c37043d768d454f7b0eafcf1c119e.tar.xz
o3: Fix for retry ID bug.
It should be cleared prior to the call to recvRetry. Add extra DPRINTF statement for clearer debugging output. --HG-- extra : convert_revision : e2332754743f42d60e159ac89f6fb0fd8b7f57f8
Diffstat (limited to 'src/cpu/o3/lsq_unit_impl.hh')
-rw-r--r--src/cpu/o3/lsq_unit_impl.hh1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cpu/o3/lsq_unit_impl.hh b/src/cpu/o3/lsq_unit_impl.hh
index 8b2e82d8e..4ab149cee 100644
--- a/src/cpu/o3/lsq_unit_impl.hh
+++ b/src/cpu/o3/lsq_unit_impl.hh
@@ -928,6 +928,7 @@ void
LSQUnit<Impl>::recvRetry()
{
if (isStoreBlocked) {
+ DPRINTF(LSQUnit, "Receiving retry: store blocked\n");
assert(retryPkt != NULL);
if (dcachePort->sendTiming(retryPkt)) {