summaryrefslogtreecommitdiff
path: root/src/cpu/o3/lsq_unit_impl.hh
diff options
context:
space:
mode:
authorMitch Hayenga <Mitch.Hayenga@ARM.com>2014-04-01 14:22:06 -0500
committerMitch Hayenga <Mitch.Hayenga@ARM.com>2014-04-01 14:22:06 -0500
commite4086878f62f5eacb84b9bf2183975e92ff564f5 (patch)
tree11d1c0ae98acb4be25d0f08a238de7a5fb26d254 /src/cpu/o3/lsq_unit_impl.hh
parenta0d30f36a6cdc7f686be0e6145e78e030ef973c3 (diff)
downloadgem5-e4086878f62f5eacb84b9bf2183975e92ff564f5.tar.xz
cpu: Fix case where o3 lsq could print out uninitialized data
In the O3 LSQ, data read/written is printed out in DPRINTFs. However, the data field is treated as a character string with a null terminated. However the data field is not encoded this way. This patch removes that possibility by removing the data part of the print.
Diffstat (limited to 'src/cpu/o3/lsq_unit_impl.hh')
-rw-r--r--src/cpu/o3/lsq_unit_impl.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cpu/o3/lsq_unit_impl.hh b/src/cpu/o3/lsq_unit_impl.hh
index 89c30aa46..416f3e7e7 100644
--- a/src/cpu/o3/lsq_unit_impl.hh
+++ b/src/cpu/o3/lsq_unit_impl.hh
@@ -155,12 +155,12 @@ LSQUnit<Impl>::init(O3CPU *cpu_ptr, IEW *iew_ptr, DerivO3CPUParams *params,
cpu = cpu_ptr;
iewStage = iew_ptr;
- DPRINTF(LSQUnit, "Creating LSQUnit%i object.\n",id);
-
lsq = lsq_ptr;
lsqID = id;
+ DPRINTF(LSQUnit, "Creating LSQUnit%i object.\n",id);
+
// Add 1 for the sentinel entry (they are circular queues).
LQEntries = maxLQEntries + 1;
SQEntries = maxSQEntries + 1;