diff options
| author | Alex Langford <apl@fb.com> | 2019-07-16 01:02:32 +0000 |
|---|---|---|
| committer | Alex Langford <apl@fb.com> | 2019-07-16 01:02:32 +0000 |
| commit | 0d121273181f89b5296b02084fbb967d159b2c69 (patch) | |
| tree | 779c7428c62a1dfe91ac8876c0a5d48350d65c6d | |
| parent | 01ee172e9e4a32a326105b6817bb801a07f44bfa (diff) | |
| download | bcm5719-llvm-0d121273181f89b5296b02084fbb967d159b2c69.tar.gz bcm5719-llvm-0d121273181f89b5296b02084fbb967d159b2c69.zip | |
[Target] Remove unused method Target::GetDefaultClangModuleSearchPaths
llvm-svn: 366161
| -rw-r--r-- | lldb/include/lldb/Target/Target.h | 2 | ||||
| -rw-r--r-- | lldb/source/Target/Target.cpp | 7 |
2 files changed, 0 insertions, 9 deletions
diff --git a/lldb/include/lldb/Target/Target.h b/lldb/include/lldb/Target/Target.h index 875a8b1e2c1..4ed11afc31b 100644 --- a/lldb/include/lldb/Target/Target.h +++ b/lldb/include/lldb/Target/Target.h @@ -491,8 +491,6 @@ public: static FileSpecList GetDefaultDebugFileSearchPaths(); - static FileSpecList GetDefaultClangModuleSearchPaths(); - static ArchSpec GetDefaultArchitecture(); static void SetDefaultArchitecture(const ArchSpec &arch); diff --git a/lldb/source/Target/Target.cpp b/lldb/source/Target/Target.cpp index ac15749663f..4941cb585c5 100644 --- a/lldb/source/Target/Target.cpp +++ b/lldb/source/Target/Target.cpp @@ -2330,13 +2330,6 @@ FileSpecList Target::GetDefaultDebugFileSearchPaths() { return FileSpecList(); } -FileSpecList Target::GetDefaultClangModuleSearchPaths() { - TargetPropertiesSP properties_sp(Target::GetGlobalProperties()); - if (properties_sp) - return properties_sp->GetClangModuleSearchPaths(); - return FileSpecList(); -} - ArchSpec Target::GetDefaultArchitecture() { TargetPropertiesSP properties_sp(Target::GetGlobalProperties()); if (properties_sp) |

