NFC: Fix indentation around the newly renamed LLVM_DEBUG macro.

Jordan used a sed command to rename DEBUG to LLVM_DEBUG. That caused some
lines to wrap and messed up indentiation for multi-line arguments.
This commit is contained in:
Bob Wilson
2018-07-21 00:56:18 -07:00
parent 3257145cf1
commit 8e330ee344
89 changed files with 980 additions and 857 deletions

View File

@@ -663,8 +663,9 @@ SILModule::lookUpFunctionInWitnessTable(ProtocolConformanceRef C,
// If no witness table was found, bail.
if (!Ret) {
LLVM_DEBUG(llvm::dbgs() << " Failed speculative lookup of witness for: ";
C.dump(); Requirement.dump());
LLVM_DEBUG(llvm::dbgs() << " Failed speculative lookup of "
"witness for: ";
C.dump(); Requirement.dump());
return std::make_pair(nullptr, nullptr);
}
@@ -702,8 +703,8 @@ SILModule::lookUpFunctionInDefaultWitnessTable(const ProtocolDecl *Protocol,
// together serialized SIL emitted by each translation unit.
if (!Ret) {
LLVM_DEBUG(llvm::dbgs() << " Failed speculative lookup of default "
"witness for " << Protocol->getName() << " ";
Requirement.dump());
"witness for " << Protocol->getName() << " ";
Requirement.dump());
return std::make_pair(nullptr, nullptr);
}