diff options
author | Sean Callanan <scallanan@apple.com> | 2010-08-20 01:02:30 +0000 |
---|---|---|
committer | Sean Callanan <scallanan@apple.com> | 2010-08-20 01:02:30 +0000 |
commit | d0ef0eff61eee004f08ef5add8a3f958d08698b7 (patch) | |
tree | 4592a88de3993edf33ad2c90dbe23020169f8e7c /lldb/source/Commands/CommandObjectExpression.cpp | |
parent | 05336d9596eb24d86a83f1a6816a8f20ba3cd556 (diff) | |
download | bcm5719-llvm-d0ef0eff61eee004f08ef5add8a3f958d08698b7.tar.gz bcm5719-llvm-d0ef0eff61eee004f08ef5add8a3f958d08698b7.zip |
First step of refactoring variable handling in the
expression parser. There shouldn't be four separate
classes encapsulating a variable.
ClangExpressionVariable is now meant to be the
container for all variable information. It has
several optional components that hold data for
different subsystems.
ClangPersistentVariable has been removed; we now
use ClangExpressionVariable instead.
llvm-svn: 111600
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 12e99e26f56..af1041002b6 100644 --- a/lldb/source/Commands/CommandObjectExpression.cpp +++ b/lldb/source/Commands/CommandObjectExpression.cpp @@ -252,7 +252,7 @@ CommandObjectExpression::EvaluateExpression (const char *expr, bool bare, Stream bool success; bool canInterpret = false; - ClangPersistentVariable *expr_result = 0; + ClangExpressionVariable *expr_result = 0; Error expr_error; canInterpret = clang_expr.ConvertIRToDWARF (expr_local_vars, dwarf_opcodes); |