diff options
Diffstat (limited to 'lldb/source/Expression')
-rw-r--r-- | lldb/source/Expression/ClangFunction.cpp | 4 | ||||
-rw-r--r-- | lldb/source/Expression/ClangUserExpression.cpp | 4 |
2 files changed, 2 insertions, 6 deletions
diff --git a/lldb/source/Expression/ClangFunction.cpp b/lldb/source/Expression/ClangFunction.cpp index 988bad528b9..bab93f028a0 100644 --- a/lldb/source/Expression/ClangFunction.cpp +++ b/lldb/source/Expression/ClangFunction.cpp @@ -517,9 +517,7 @@ ClangFunction::ExecuteFunction ( this_arg)); if (!call_plan_sp) return eExecutionSetupError; - - call_plan_sp->SetPrivate(true); - + // <rdar://problem/12027563> we need to make sure we record the fact that we are running an expression here // otherwise this fact will fail to be recorded when fetching an Objective-C object description if (exe_ctx.GetProcessPtr()) diff --git a/lldb/source/Expression/ClangUserExpression.cpp b/lldb/source/Expression/ClangUserExpression.cpp index 13b7b0edfbf..81db3288277 100644 --- a/lldb/source/Expression/ClangUserExpression.cpp +++ b/lldb/source/Expression/ClangUserExpression.cpp @@ -633,9 +633,7 @@ ClangUserExpression::Execute (Stream &error_stream, return eExecutionSetupError; lldb::addr_t function_stack_pointer = static_cast<ThreadPlanCallFunction *>(call_plan_sp.get())->GetFunctionStackPointer(); - - call_plan_sp->SetPrivate(true); - + if (log) log->Printf("-- [ClangUserExpression::Execute] Execution of expression begins --"); |