diff options
Diffstat (limited to 'lldb')
-rw-r--r-- | lldb/source/Target/ThreadPlanCallFunction.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/source/Target/ThreadPlanCallFunction.cpp b/lldb/source/Target/ThreadPlanCallFunction.cpp index 9f6c18e5bd8..766982a8f03 100644 --- a/lldb/source/Target/ThreadPlanCallFunction.cpp +++ b/lldb/source/Target/ThreadPlanCallFunction.cpp @@ -303,7 +303,8 @@ ThreadPlanCallFunction::DoTakedown () const ABI *abi = process_sp ? process_sp->GetABI().get() : NULL; if (abi && m_return_type.IsValid()) { - m_return_valobj_sp = abi->GetReturnValueObject (m_thread, m_return_type); + const bool persistent = false; + m_return_valobj_sp = abi->GetReturnValueObject (m_thread, m_return_type, persistent); } if (log) |