[lldb][NFC] Migrate FileSpec::Dump to raw_ostream

This commit is contained in:
Raphael Isemann
2019-12-06 08:38:23 +01:00
parent 51ce067a44
commit 4dac97eb1e
13 changed files with 22 additions and 24 deletions

View File

@@ -3891,7 +3891,7 @@ void RSModuleDescriptor::Dump(Stream &strm) const {
int indent = strm.GetIndentLevel();
strm.Indent();
m_module->GetFileSpec().Dump(&strm);
m_module->GetFileSpec().Dump(strm.AsRawOstream());
strm.Indent(m_module->GetNumCompileUnits() ? "Debug info loaded."
: "Debug info does not exist.");
strm.EOL();