Moved the section load list up into the target so we can use the target

to symbolicate things without the need for a valid process subclass.

llvm-svn: 113895
This commit is contained in:
Greg Clayton
2010-09-14 23:36:40 +00:00
parent 5f2311dc29
commit f5e56de080
57 changed files with 292 additions and 361 deletions

View File

@@ -132,7 +132,7 @@ lldb::addr_t
SBFrame::GetPC () const
{
if (m_opaque_sp)
return m_opaque_sp->GetFrameCodeAddress().GetLoadAddress (&m_opaque_sp->GetThread().GetProcess());
return m_opaque_sp->GetFrameCodeAddress().GetLoadAddress (&m_opaque_sp->GetThread().GetProcess().GetTarget());
return LLDB_INVALID_ADDRESS;
}