diff options
author | Alex Langford <apl@fb.com> | 2019-07-15 22:56:12 +0000 |
---|---|---|
committer | Alex Langford <apl@fb.com> | 2019-07-15 22:56:12 +0000 |
commit | b5701710a4297040b8d80eaf444d560aeba0867c (patch) | |
tree | 29645cb87e05910a4b9e1fe5f0ab0ff6cb00e2b8 /lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.cpp | |
parent | a28dcf693d15119cf8be96ce66f97bdf8d373eb6 (diff) | |
download | bcm5719-llvm-b5701710a4297040b8d80eaf444d560aeba0867c.tar.gz bcm5719-llvm-b5701710a4297040b8d80eaf444d560aeba0867c.zip |
[LanguageRuntime] Move ObjCLanguageRuntime into a plugin
Summary:
Following up to my CPPLanguageRuntime change, I'm moving
ObjCLanguageRuntime into a plugin as well.
Reviewers: JDevlieghere, compnerd, jingham, clayborg
Subscribers: mgorny, arphaman, lldb-commits
Differential Revision: https://reviews.llvm.org/D64763
llvm-svn: 366148
Diffstat (limited to 'lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.cpp')
-rw-r--r-- | lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.cpp b/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.cpp index 1c7f9318986..7d13891ded8 100644 --- a/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.cpp +++ b/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.cpp @@ -78,7 +78,6 @@ #include "lldb/Symbol/SymbolVendor.h" #include "lldb/Target/ExecutionContext.h" #include "lldb/Target/Language.h" -#include "lldb/Target/ObjCLanguageRuntime.h" #include "lldb/Target/Process.h" #include "lldb/Target/Target.h" #include "lldb/Target/ThreadPlanCallFunction.h" @@ -90,6 +89,8 @@ #include "lldb/Utility/StreamString.h" #include "lldb/Utility/StringList.h" +#include "Plugins/LanguageRuntime/ObjC/ObjCLanguageRuntime.h" + #include <cctype> #include <memory> |