diff options
author | Jim Ingham <jingham@apple.com> | 2011-10-15 00:24:48 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2011-10-15 00:24:48 +0000 |
commit | c4c9fedc72272918d0c3bc26946b980af2d80f11 (patch) | |
tree | 5302bdd2ba2d5d6ecae34f1903216da9961c5a71 /lldb/source/Target/ThreadPlanStepOverRange.cpp | |
parent | 10c4b249fc33d1792dd5da03af1754078af8d68a (diff) | |
download | bcm5719-llvm-c4c9fedc72272918d0c3bc26946b980af2d80f11.tar.gz bcm5719-llvm-c4c9fedc72272918d0c3bc26946b980af2d80f11.zip |
Make the step range plans capable of supporting multiple ranges. Also make their constructors public, there isn't any good reason why you shouldn't be able to make these plans.
llvm-svn: 142026
Diffstat (limited to 'lldb/source/Target/ThreadPlanStepOverRange.cpp')
-rw-r--r-- | lldb/source/Target/ThreadPlanStepOverRange.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Target/ThreadPlanStepOverRange.cpp b/lldb/source/Target/ThreadPlanStepOverRange.cpp index adade557f7a..57ea97bc315 100644 --- a/lldb/source/Target/ThreadPlanStepOverRange.cpp +++ b/lldb/source/Target/ThreadPlanStepOverRange.cpp @@ -58,7 +58,7 @@ ThreadPlanStepOverRange::GetDescription (Stream *s, lldb::DescriptionLevel level else { s->Printf ("stepping through range (stepping over functions): "); - m_address_range.Dump (s, &m_thread.GetProcess().GetTarget(), Address::DumpStyleLoadAddress); + DumpRanges(s); } } |