diff options
author | Alex Langford <apl@fb.com> | 2020-01-29 11:59:28 -0800 |
---|---|---|
committer | Alex Langford <apl@fb.com> | 2020-01-31 12:20:10 -0800 |
commit | 8be30215feeff1d82fe2bde0c9fb0e6cd1bfc15c (patch) | |
tree | 3c8dac2aecd563cdda16be3246a2287aff256ee7 /lldb/tools/lldb-test/SystemInitializerTest.cpp | |
parent | f5a71b49be7bb22939ec0e225922fe78d8901fc8 (diff) | |
download | llvm-8be30215feeff1d82fe2bde0c9fb0e6cd1bfc15c.zip llvm-8be30215feeff1d82fe2bde0c9fb0e6cd1bfc15c.tar.gz llvm-8be30215feeff1d82fe2bde0c9fb0e6cd1bfc15c.tar.bz2 |
[lldb] Move clang-based files out of Symbol
Summary:
This change represents the move of ClangASTImporter, ClangASTMetadata,
ClangExternalASTSourceCallbacks, ClangUtil, CxxModuleHandler, and
TypeSystemClang from lldbSource to lldbPluginExpressionParserClang.h
This explicitly removes knowledge of clang internals from lldbSymbol,
moving towards a more generic core implementation of lldb.
Reviewers: JDevlieghere, davide, aprantl, teemperor, clayborg, labath, jingham, shafik
Subscribers: emaste, mgorny, arphaman, jfb, usaxena95, lldb-commits
Tags: #lldb
Differential Revision: https://reviews.llvm.org/D73661
Diffstat (limited to 'lldb/tools/lldb-test/SystemInitializerTest.cpp')
-rw-r--r-- | lldb/tools/lldb-test/SystemInitializerTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/tools/lldb-test/SystemInitializerTest.cpp b/lldb/tools/lldb-test/SystemInitializerTest.cpp index 37147a8..5cc998f 100644 --- a/lldb/tools/lldb-test/SystemInitializerTest.cpp +++ b/lldb/tools/lldb-test/SystemInitializerTest.cpp @@ -12,7 +12,6 @@ #include "lldb/Host/Host.h" #include "lldb/Initialization/SystemInitializerCommon.h" #include "lldb/Interpreter/CommandInterpreter.h" -#include "lldb/Symbol/TypeSystemClang.h" #include "lldb/Utility/Timer.h" #include "Plugins/ABI/MacOSX-arm/ABIMacOSX_arm.h" @@ -85,6 +84,7 @@ #include "Plugins/SymbolVendor/ELF/SymbolVendorELF.h" #include "Plugins/SymbolVendor/wasm/SymbolVendorWasm.h" #include "Plugins/SystemRuntime/MacOSX/SystemRuntimeMacOSX.h" +#include "Plugins/TypeSystem/Clang/TypeSystemClang.h" #include "Plugins/UnwindAssembly/InstEmulation/UnwindAssemblyInstEmulation.h" #include "Plugins/UnwindAssembly/x86/UnwindAssembly-x86.h" |