diff options
author | Jim Ingham <jingham@apple.com> | 2012-09-14 22:16:10 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2012-09-14 22:16:10 +0000 |
commit | 6fe2dc79b768862939653b83b1d0b864c7adf14a (patch) | |
tree | 8709c37f9b5a6a18262d629492670e15d2d8e808 /lldb/source/API/SBThread.cpp | |
parent | 8691e5220b400a355dd979af1afa81889568e4e0 (diff) | |
download | bcm5719-llvm-6fe2dc79b768862939653b83b1d0b864c7adf14a.tar.gz bcm5719-llvm-6fe2dc79b768862939653b83b1d0b864c7adf14a.zip |
Remove a duplicate frame_sp local that was shadowing the one we copied the incoming SBFrame into.
<rdar://problem/12304255>
llvm-svn: 163943
Diffstat (limited to 'lldb/source/API/SBThread.cpp')
-rw-r--r-- | lldb/source/API/SBThread.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lldb/source/API/SBThread.cpp b/lldb/source/API/SBThread.cpp index 05d54d6d073..345cd7bbd1e 100644 --- a/lldb/source/API/SBThread.cpp +++ b/lldb/source/API/SBThread.cpp @@ -765,7 +765,6 @@ SBThread::StepOverUntil (lldb::SBFrame &sb_frame, return sb_error; } - StackFrameSP frame_sp; if (!frame_sp) { frame_sp = thread->GetSelectedFrame (); |