Merge pull request #27950 from brentdax/dumpster-fire

[NFC] Standardize dump() methods in frontend
This commit is contained in:
Brent Royal-Gordon
2019-10-31 20:36:26 -07:00
committed by GitHub
103 changed files with 425 additions and 361 deletions

View File

@@ -366,12 +366,12 @@ FunctionSignatureTransformDescriptor::createOptimizedSILFunctionType() {
<< F->getName() << "\n";
llvm::dbgs() << "Interface params:\n";
for (auto Param : InterfaceParams) {
Param.getInterfaceType().dump();
Param.getInterfaceType().dump(llvm::dbgs());
}
llvm::dbgs() << "Interface results:\n";
for (auto Result : InterfaceResults) {
Result.getInterfaceType().dump();
Result.getInterfaceType().dump(llvm::dbgs());
});
}
}