summaryrefslogtreecommitdiffstats
path: root/llvm/lib
diff options
context:
space:
mode:
authorDavide Italiano <davide@freebsd.org>2017-05-12 15:28:12 +0000
committerDavide Italiano <davide@freebsd.org>2017-05-12 15:28:12 +0000
commitc43a9f80ed1abc1a36e5d3f03c9a0fb319adb960 (patch)
tree128906ac0823cedfd127b3af2f0e4be5c65301d7 /llvm/lib
parenteabf6fc4b5087d2246d51f7a8b6a4d091be836ed (diff)
downloadbcm5719-llvm-c43a9f80ed1abc1a36e5d3f03c9a0fb319adb960.tar.gz
bcm5719-llvm-c43a9f80ed1abc1a36e5d3f03c9a0fb319adb960.zip
[NewGVN] Improve debug output a bit. NFCI.
While debugging a predicate info problem, I noticed this was missing a newline, making the debug output slightly less readable. llvm-svn: 302908
Diffstat (limited to 'llvm/lib')
-rw-r--r--llvm/lib/Transforms/Scalar/NewGVN.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Scalar/NewGVN.cpp b/llvm/lib/Transforms/Scalar/NewGVN.cpp
index e257f06dd8a..a8f399d49cc 100644
--- a/llvm/lib/Transforms/Scalar/NewGVN.cpp
+++ b/llvm/lib/Transforms/Scalar/NewGVN.cpp
@@ -1312,7 +1312,7 @@ NewGVN::performSymbolicPredicateInfoEvaluation(Instruction *I) const {
return nullptr;
if (CopyOf != Cmp->getOperand(0) && CopyOf != Cmp->getOperand(1)) {
- DEBUG(dbgs() << "Copy is not of any condition operands!");
+ DEBUG(dbgs() << "Copy is not of any condition operands!\n");
return nullptr;
}
Value *FirstOp = lookupOperandLeader(Cmp->getOperand(0));
OpenPOWER on IntegriCloud