From 4fcf8e9959e281259a4e9e29fbd34e67fa6072dc Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Tue, 27 Sep 2011 00:25:26 -0700 Subject: O3: Tidy up some DPRINTFs in the LSQ. --- src/cpu/o3/lsq_unit_impl.hh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/cpu/o3/lsq_unit_impl.hh') 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::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::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; -- cgit v1.2.3