mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Merge pull request #27950 from brentdax/dumpster-fire
[NFC] Standardize dump() methods in frontend
This commit is contained in:
@@ -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());
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user