Patch from Matt Kopec <matt.kopec@intel.com> to handle stepping into multiply-nested inlined code.

llvm-svn: 167028
This commit is contained in:
Jim Ingham
2012-10-30 17:44:49 +00:00
parent 83a77c3288
commit 3b1c97aa74

View File

@@ -146,11 +146,14 @@ POSIXThread::WillResume(lldb::StateType resume_state)
{
SetResumeState(resume_state);
ClearStackFrames();
if (!Thread::WillResume(resume_state))
return false;
if (m_unwinder_ap.get())
m_unwinder_ap->Clear();
Thread::ClearStackFrames();
return Thread::WillResume(resume_state);
return true;
}
bool