[Lldb-commits] [lldb] r163936 - /lldb/trunk/source/Commands/CommandObjectThread.cpp

Jim Ingham jingham at apple.com
Fri Sep 14 13:48:14 PDT 2012


Author: jingham
Date: Fri Sep 14 15:48:14 2012
New Revision: 163936

URL: http://llvm.org/viewvc/llvm-project?rev=163936&view=rev
Log:
Use the frame index passed into "thread until" rather than using the selected frame.

Modified:
    lldb/trunk/source/Commands/CommandObjectThread.cpp

Modified: lldb/trunk/source/Commands/CommandObjectThread.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Commands/CommandObjectThread.cpp?rev=163936&r1=163935&r2=163936&view=diff
==============================================================================
--- lldb/trunk/source/Commands/CommandObjectThread.cpp (original)
+++ lldb/trunk/source/Commands/CommandObjectThread.cpp Fri Sep 14 15:48:14 2012
@@ -1054,7 +1054,7 @@
                                                                 &address_list.front(), 
                                                                 address_list.size(), 
                                                                 m_options.m_stop_others, 
-                                                                thread->GetSelectedFrameIndex ());
+                                                                m_options.m_frame_idx);
                 // User level plans should be master plans so they can be interrupted (e.g. by hitting a breakpoint)
                 // and other plans executed by the user (stepping around the breakpoint) and then a "continue"
                 // will resume the original plan.





More information about the lldb-commits mailing list