diff options
author | Sean Callanan <scallanan@apple.com> | 2016-04-29 18:09:03 +0000 |
---|---|---|
committer | Sean Callanan <scallanan@apple.com> | 2016-04-29 18:09:03 +0000 |
commit | 7736a208b8958a7e708c0756bdce40437f8f48f6 (patch) | |
tree | 47114371e62e174ee586383cdc704cdf0cc1a9d4 /lldb/source/Expression/LLVMUserExpression.cpp | |
parent | 327b06400fc208fbd2da720383733d09568ae5f3 (diff) | |
download | bcm5719-llvm-7736a208b8958a7e708c0756bdce40437f8f48f6.tar.gz bcm5719-llvm-7736a208b8958a7e708c0756bdce40437f8f48f6.zip |
[fix] Fixed a bug where const this would cause parser errors about $__lldb_expr.
In templated const functions, trying to run an expression would produce the
error
error: out-of-line definition of '$__lldb_expr' does not match any declaration
in 'foo' member declaration does not match because it is const qualified
error: 1 error parsing expression
which is no good. It turned out we don't actually need to worry about "const,"
we just need to be consistent about the declaration of the expression and the
FunctionDecl we inject into the class for "this."
Also added a test case.
<rdar://problem/24985958>
llvm-svn: 268083
Diffstat (limited to 'lldb/source/Expression/LLVMUserExpression.cpp')
-rw-r--r-- | lldb/source/Expression/LLVMUserExpression.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lldb/source/Expression/LLVMUserExpression.cpp b/lldb/source/Expression/LLVMUserExpression.cpp index 60f68b129d3..0b969806280 100644 --- a/lldb/source/Expression/LLVMUserExpression.cpp +++ b/lldb/source/Expression/LLVMUserExpression.cpp @@ -59,7 +59,6 @@ LLVMUserExpression::LLVMUserExpression(ExecutionContextScope &exe_scope, m_in_objectivec_method(false), m_in_static_method(false), m_needs_object_ptr(false), - m_const_object(false), m_target(NULL), m_can_interpret(false), m_materialized_address(LLDB_INVALID_ADDRESS) |