forked from OSchip/llvm-project
[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
This commit is contained in:
parent
fb613e552a
commit
c9a4c6208b
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue