aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Plugins
diff options
context:
space:
mode:
authorJonas Devlieghere <jonas@devlieghere.com>2022-03-03 13:56:59 -0800
committerJonas Devlieghere <jonas@devlieghere.com>2022-03-03 13:57:33 -0800
commitbf414cfbf70570eaba282ae0561324794269d2d1 (patch)
tree3e04f4be3b96841f784e37f24217a0844ee82bc7 /lldb/source/Plugins
parente0adc3be132922776a867a623959e176f29f9965 (diff)
downloadllvm-bf414cfbf70570eaba282ae0561324794269d2d1.zip
llvm-bf414cfbf70570eaba282ae0561324794269d2d1.tar.gz
llvm-bf414cfbf70570eaba282ae0561324794269d2d1.tar.bz2
[lldb] Fix the build after 8b3b66ea63d6
Remove remaining calls to FileSystem::Collect.
Diffstat (limited to 'lldb/source/Plugins')
-rw-r--r--lldb/source/Plugins/ScriptInterpreter/Lua/ScriptInterpreterLua.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/lldb/source/Plugins/ScriptInterpreter/Lua/ScriptInterpreterLua.cpp b/lldb/source/Plugins/ScriptInterpreter/Lua/ScriptInterpreterLua.cpp
index c677abf..5b9d1b7 100644
--- a/lldb/source/Plugins/ScriptInterpreter/Lua/ScriptInterpreterLua.cpp
+++ b/lldb/source/Plugins/ScriptInterpreter/Lua/ScriptInterpreterLua.cpp
@@ -217,7 +217,6 @@ bool ScriptInterpreterLua::LoadScriptingModule(
lldb_private::Status &error, StructuredData::ObjectSP *module_sp,
FileSpec extra_search_dir) {
- FileSystem::Instance().Collect(filename);
if (llvm::Error e = m_lua->LoadModule(filename)) {
error.SetErrorStringWithFormatv("lua failed to import '{0}': {1}\n",
filename, llvm::toString(std::move(e)));