diff options
author | Sean Callanan <scallanan@apple.com> | 2015-09-03 00:35:46 +0000 |
---|---|---|
committer | Sean Callanan <scallanan@apple.com> | 2015-09-03 00:35:46 +0000 |
commit | e33724f371eae590d984f0be7e943b670b99274a (patch) | |
tree | 6832014aca30111c0d42b8d9fc0b134482af3d9f /lldb/source/Commands/CommandObjectExpression.cpp | |
parent | e90dc827e05f71f5c6a66513fd38c822dd2360a7 (diff) | |
download | bcm5719-llvm-e33724f371eae590d984f0be7e943b670b99274a.tar.gz bcm5719-llvm-e33724f371eae590d984f0be7e943b670b99274a.zip |
In preparation for factoring persistent variables into a generic part and a
Clang-specific part, create the ExpressionVariable source/header file and
move ClangExpressionVariable into the Clang expression parser plugin.
It is expected that there are some ugly #include paths... these will be resolved
by either (1) making that code use generic expression variables (once they're
separated appropriately) or (2) moving that code into a plug-in, often
the expression parser plug-in.
llvm-svn: 246737
Diffstat (limited to 'lldb/source/Commands/CommandObjectExpression.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectExpression.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectExpression.cpp b/lldb/source/Commands/CommandObjectExpression.cpp index 195ccbcbb7d..72a1a234e4f 100644 --- a/lldb/source/Commands/CommandObjectExpression.cpp +++ b/lldb/source/Commands/CommandObjectExpression.cpp @@ -16,7 +16,7 @@ #include "lldb/Core/Value.h" #include "lldb/Core/ValueObjectVariable.h" #include "lldb/DataFormatters/ValueObjectPrinter.h" -#include "lldb/Expression/ClangExpressionVariable.h" +#include "lldb/../../source/Plugins/ExpressionParser/Clang/ClangExpressionVariable.h" #include "lldb/Expression/ClangUserExpression.h" #include "lldb/Expression/ClangFunction.h" #include "lldb/Expression/DWARFExpression.h" |