diff options
author | Craig Topper <craig.topper@intel.com> | 2018-05-31 18:08:11 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@intel.com> | 2018-05-31 18:08:11 +0000 |
commit | c9a4c6208be5e32bdce8b6a1fe9a8e355b9f1e19 (patch) | |
tree | 02cc387e4cc5f5f87b8cb50a33e629462d0e0ff5 /llvm/lib/Transforms | |
parent | fb613e552a0d5844b97b77c3d93ad499e176d70f (diff) | |
download | bcm5719-llvm-c9a4c6208be5e32bdce8b6a1fe9a8e355b9f1e19.tar.gz bcm5719-llvm-c9a4c6208be5e32bdce8b6a1fe9a8e355b9f1e19.zip |
[JumpThreading] Fix some strange formatting of code inside LLVM_DEBUG. NFC
I don't know if clang-format got confused here or what.
llvm-svn: 333675
Diffstat (limited to 'llvm/lib/Transforms')
-rw-r--r-- | llvm/lib/Transforms/Scalar/JumpThreading.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/lib/Transforms/Scalar/JumpThreading.cpp b/llvm/lib/Transforms/Scalar/JumpThreading.cpp index cf9919ebf9d..09a7f9974be 100644 --- a/llvm/lib/Transforms/Scalar/JumpThreading.cpp +++ b/llvm/lib/Transforms/Scalar/JumpThreading.cpp @@ -1576,11 +1576,11 @@ bool JumpThreadingPass::ProcessThreadableEdges(Value *Cond, BasicBlock *BB, assert(!PredValues.empty() && "ComputeValueKnownInPredecessors returned true with no values"); - LLVM_DEBUG(dbgs() << "IN BB: " << *BB; for (const auto &PredValue - : PredValues) { - dbgs() << " BB '" << BB->getName() - << "': FOUND condition = " << *PredValue.first << " for pred '" - << PredValue.second->getName() << "'.\n"; + LLVM_DEBUG(dbgs() << "IN BB: " << *BB; + for (const auto &PredValue : PredValues) { + dbgs() << " BB '" << BB->getName() + << "': FOUND condition = " << *PredValue.first + << " for pred '" << PredValue.second->getName() << "'.\n"; }); // Decide what we want to thread through. Convert our list of known values to |