diff options
| author | Greg Clayton <gclayton@apple.com> | 2010-09-14 23:36:40 +0000 |
|---|---|---|
| committer | Greg Clayton <gclayton@apple.com> | 2010-09-14 23:36:40 +0000 |
| commit | f5e56de0809eec71d97f4cc5905f8bd0a4415a50 (patch) | |
| tree | 5c006894db84ba365b2371957a092dd51dd0ee9f /lldb/source/Target/ThreadPlanStepInRange.cpp | |
| parent | 5f2311dc29c5182b3b5dc07fc5d01ac25eeec877 (diff) | |
| download | llvm-f5e56de0809eec71d97f4cc5905f8bd0a4415a50.tar.gz llvm-f5e56de0809eec71d97f4cc5905f8bd0a4415a50.tar.bz2 llvm-f5e56de0809eec71d97f4cc5905f8bd0a4415a50.zip | |
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
Diffstat (limited to 'lldb/source/Target/ThreadPlanStepInRange.cpp')
| -rw-r--r-- | lldb/source/Target/ThreadPlanStepInRange.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Target/ThreadPlanStepInRange.cpp b/lldb/source/Target/ThreadPlanStepInRange.cpp index d6abddd81147..d83e558e716c 100644 --- a/lldb/source/Target/ThreadPlanStepInRange.cpp +++ b/lldb/source/Target/ThreadPlanStepInRange.cpp @@ -61,7 +61,7 @@ ThreadPlanStepInRange::GetDescription (Stream *s, lldb::DescriptionLevel level) else { s->Printf ("Stepping through range (stepping into functions): "); - m_address_range.Dump (s, &m_thread.GetProcess(), Address::DumpStyleLoadAddress); + m_address_range.Dump (s, &m_thread.GetProcess().GetTarget(), Address::DumpStyleLoadAddress); } } |
