diff --git a/mlir/lib/Analysis/Utils.cpp b/mlir/lib/Analysis/Utils.cpp --- a/mlir/lib/Analysis/Utils.cpp +++ b/mlir/lib/Analysis/Utils.cpp @@ -571,7 +571,7 @@ // Check if 'loopDepth' exceeds nesting depth of src/dst ops. if ((!isBackwardSlice && loopDepth > getNestingDepth(opsA[i])) || (isBackwardSlice && loopDepth > getNestingDepth(opsB[j]))) { - LLVM_DEBUG(llvm::dbgs() << "Invalid loop depth\n."); + LLVM_DEBUG(llvm::dbgs() << "Invalid loop depth\n"); return failure(); } @@ -584,7 +584,7 @@ &dependenceConstraints, /*dependenceComponents=*/nullptr, /*allowRAR=*/readReadAccesses); if (result.value == DependenceResult::Failure) { - LLVM_DEBUG(llvm::dbgs() << "Dependence check failed\n."); + LLVM_DEBUG(llvm::dbgs() << "Dependence check failed\n"); return failure(); } if (result.value == DependenceResult::NoDependence) @@ -601,7 +601,7 @@ // Initialize 'sliceUnionCst' with the bounds computed in previous step. if (failed(tmpSliceState.getAsConstraints(&sliceUnionCst))) { LLVM_DEBUG(llvm::dbgs() - << "Unable to compute slice bound constraints\n."); + << "Unable to compute slice bound constraints\n"); return failure(); } assert(sliceUnionCst.getNumDimAndSymbolIds() > 0); @@ -612,7 +612,7 @@ FlatAffineConstraints tmpSliceCst; if (failed(tmpSliceState.getAsConstraints(&tmpSliceCst))) { LLVM_DEBUG(llvm::dbgs() - << "Unable to compute slice bound constraints\n."); + << "Unable to compute slice bound constraints\n"); return failure(); } @@ -645,8 +645,7 @@ tmpSliceCst.getNumLocalIds() > 0 || failed(sliceUnionCst.unionBoundingBox(tmpSliceCst))) { LLVM_DEBUG(llvm::dbgs() - << "Unable to compute union bounding box of slice bounds." - "\n."); + << "Unable to compute union bounding box of slice bounds\n"); return failure(); } } @@ -665,7 +664,7 @@ unsigned innermostCommonLoopDepth = getInnermostCommonLoopDepth(ops, surroundingLoops); if (loopDepth > innermostCommonLoopDepth) { - LLVM_DEBUG(llvm::dbgs() << "Exceeds max loop depth\n."); + LLVM_DEBUG(llvm::dbgs() << "Exceeds max loop depth\n"); return failure(); } diff --git a/mlir/lib/Transforms/LoopFusion.cpp b/mlir/lib/Transforms/LoopFusion.cpp --- a/mlir/lib/Transforms/LoopFusion.cpp +++ b/mlir/lib/Transforms/LoopFusion.cpp @@ -1063,8 +1063,8 @@ unsigned *dstLoopDepth, bool maximalFusion, double computeToleranceThreshold) { LLVM_DEBUG({ - llvm::dbgs() << "Checking whether fusion is profitable between:\n"; - llvm::dbgs() << " " << *srcOpInst << " and \n"; + llvm::dbgs() << "Checking whether fusion is profitable between src op:\n"; + llvm::dbgs() << ' ' << *srcOpInst << " and destination op(s)\n"; for (auto dstOpInst : dstLoadOpInsts) { llvm::dbgs() << " " << *dstOpInst << "\n"; };