diff options
author | Davide Italiano <davide@freebsd.org> | 2017-05-12 15:28:12 +0000 |
---|---|---|
committer | Davide Italiano <davide@freebsd.org> | 2017-05-12 15:28:12 +0000 |
commit | c43a9f80ed1abc1a36e5d3f03c9a0fb319adb960 (patch) | |
tree | 128906ac0823cedfd127b3af2f0e4be5c65301d7 /llvm/lib | |
parent | eabf6fc4b5087d2246d51f7a8b6a4d091be836ed (diff) | |
download | bcm5719-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.cpp | 2 |
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)); |