diff options
author | Sean Callanan <scallanan@apple.com> | 2015-09-25 20:35:58 +0000 |
---|---|---|
committer | Sean Callanan <scallanan@apple.com> | 2015-09-25 20:35:58 +0000 |
commit | 4dbb271fcc32cb7e1a336362308dccb08583cec3 (patch) | |
tree | 2a5bade5dfff082b22987b164e7768748c72e367 /lldb/source/Expression/UserExpression.cpp | |
parent | 10aa8078566379592f36487fe9aa9e6b489d55cc (diff) | |
download | bcm5719-llvm-4dbb271fcc32cb7e1a336362308dccb08583cec3.tar.gz bcm5719-llvm-4dbb271fcc32cb7e1a336362308dccb08583cec3.zip |
Moved more Clang-specific parts of the expression parser into the Clang plugin.
There are still a bunch of dependencies on the plug-in, but this helps to
identify them.
There are also a few more bits we need to move (and abstract, for example the
ClangPersistentVariables).
llvm-svn: 248612
Diffstat (limited to 'lldb/source/Expression/UserExpression.cpp')
-rw-r--r-- | lldb/source/Expression/UserExpression.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lldb/source/Expression/UserExpression.cpp b/lldb/source/Expression/UserExpression.cpp index a2984363a06..1537e031d37 100644 --- a/lldb/source/Expression/UserExpression.cpp +++ b/lldb/source/Expression/UserExpression.cpp @@ -22,13 +22,12 @@ #include "lldb/Core/StreamFile.h" #include "lldb/Core/StreamString.h" #include "lldb/Core/ValueObjectConstResult.h" -#include "lldb/Expression/ASTResultSynthesizer.h" -#include "lldb/Expression/ClangPersistentVariables.h" #include "lldb/Expression/ExpressionSourceCode.h" #include "lldb/Expression/IRExecutionUnit.h" #include "lldb/Expression/IRInterpreter.h" #include "lldb/Expression/Materializer.h" #include "lldb/Expression/UserExpression.h" +#include "Plugins/ExpressionParser/Clang/ClangPersistentVariables.h" #include "lldb/Host/HostInfo.h" #include "lldb/Symbol/Block.h" #include "lldb/Symbol/Function.h" |