diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2011-09-27 00:25:26 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2011-09-27 00:25:26 -0700 |
commit | 4fcf8e9959e281259a4e9e29fbd34e67fa6072dc (patch) | |
tree | e2d27fc9e37a2a7876e396e8cd96e3f5b14e96aa /src/cpu/o3/lsq_unit_impl.hh | |
parent | 44ed4849d468b8188bdfc273c8e9a03a8f31c263 (diff) | |
download | gem5-4fcf8e9959e281259a4e9e29fbd34e67fa6072dc.tar.xz |
O3: Tidy up some DPRINTFs in the LSQ.
Diffstat (limited to 'src/cpu/o3/lsq_unit_impl.hh')
-rw-r--r-- | src/cpu/o3/lsq_unit_impl.hh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/cpu/o3/lsq_unit_impl.hh b/src/cpu/o3/lsq_unit_impl.hh index acef6ec9d..a0452b4ae 100644 --- a/src/cpu/o3/lsq_unit_impl.hh +++ b/src/cpu/o3/lsq_unit_impl.hh @@ -534,8 +534,8 @@ LSQUnit<Impl>::checkViolations(int load_idx, DynInstPtr &inst) if (!memDepViolator || ld_inst->seqNum < memDepViolator->seqNum) { DPRINTF(LSQUnit, "Detected fault with inst [sn:%lli] " - " and [sn:%lli] at address %#x\n", inst->seqNum, - ld_inst->seqNum, ld_eff_addr1); + "and [sn:%lli] at address %#x\n", + inst->seqNum, ld_inst->seqNum, ld_eff_addr1); memDepViolator = ld_inst; ++lsqMemOrderViolation; @@ -560,9 +560,9 @@ LSQUnit<Impl>::checkViolations(int load_idx, DynInstPtr &inst) if (memDepViolator && ld_inst->seqNum > memDepViolator->seqNum) break; - DPRINTF(LSQUnit, "Detected fault with inst [sn:%lli] and [sn:%lli]" - " at address %#x\n", inst->seqNum, ld_inst->seqNum, - ld_eff_addr1); + DPRINTF(LSQUnit, "Detected fault with inst [sn:%lli] and " + "[sn:%lli] at address %#x\n", + inst->seqNum, ld_inst->seqNum, ld_eff_addr1); memDepViolator = ld_inst; ++lsqMemOrderViolation; |