diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2023-11-05 08:26:42 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-05 08:26:42 -0800 |
commit | 745e8bfd1ade216c909074153d2dc9eb39d4adb7 (patch) | |
tree | 897c425701fe67f62e1e120f6db23638365f230e /lldb/source/Commands/CommandObjectTarget.cpp | |
parent | b26b1cee2e6b0b730fda87dbd4a236810d424129 (diff) | |
download | llvm-745e8bfd1ade216c909074153d2dc9eb39d4adb7.zip llvm-745e8bfd1ade216c909074153d2dc9eb39d4adb7.tar.gz llvm-745e8bfd1ade216c909074153d2dc9eb39d4adb7.tar.bz2 |
[lldb] Remove LocateSymbolFile (#71301)
This completes the conversion of LocateSymbolFile into a SymbolLocator
plugin. The only remaining function is DownloadSymbolFileAsync which
doesn't really fit into the plugin model, and therefore moves into the
SymbolLocator class, while still relying on the plugins to do the
underlying work.
Diffstat (limited to 'lldb/source/Commands/CommandObjectTarget.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectTarget.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectTarget.cpp b/lldb/source/Commands/CommandObjectTarget.cpp index 180210d..8f052d0 100644 --- a/lldb/source/Commands/CommandObjectTarget.cpp +++ b/lldb/source/Commands/CommandObjectTarget.cpp @@ -36,7 +36,6 @@ #include "lldb/Symbol/CompileUnit.h" #include "lldb/Symbol/FuncUnwinders.h" #include "lldb/Symbol/LineTable.h" -#include "lldb/Symbol/LocateSymbolFile.h" #include "lldb/Symbol/ObjectFile.h" #include "lldb/Symbol/SymbolFile.h" #include "lldb/Symbol/UnwindPlan.h" |