summaryrefslogtreecommitdiffstats
path: root/lldb/source/Core/Module.cpp
diff options
context:
space:
mode:
authorRaphael Isemann <teemperor@gmail.com>2019-12-06 08:38:23 +0100
committerRaphael Isemann <teemperor@gmail.com>2019-12-06 09:40:42 +0100
commit4dac97eb1e6563750e682e482e68f29ac076a4f7 (patch)
treef766d99985f1c8f5674d1939b7de7e38b669315c /lldb/source/Core/Module.cpp
parent51ce067a442ee6381527b12d113f51906b0245a8 (diff)
downloadbcm5719-llvm-4dac97eb1e6563750e682e482e68f29ac076a4f7.tar.gz
bcm5719-llvm-4dac97eb1e6563750e682e482e68f29ac076a4f7.zip
[lldb][NFC] Migrate FileSpec::Dump to raw_ostream
Diffstat (limited to 'lldb/source/Core/Module.cpp')
-rw-r--r--lldb/source/Core/Module.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Core/Module.cpp b/lldb/source/Core/Module.cpp
index cc4eea67417..5bb6a55457d 100644
--- a/lldb/source/Core/Module.cpp
+++ b/lldb/source/Core/Module.cpp
@@ -1511,7 +1511,7 @@ bool Module::LoadScriptingResourceInTarget(Target *target, Status &error,
return false;
}
StreamString scripting_stream;
- scripting_fspec.Dump(&scripting_stream);
+ scripting_fspec.Dump(scripting_stream.AsRawOstream());
const bool can_reload = true;
const bool init_lldb_globals = false;
bool did_load = script_interpreter->LoadScriptingModule(
OpenPOWER on IntegriCloud