[Lldb-commits] [lldb] r124880 - /lldb/branches/apple/calcite/lldb/source/Target/ThreadPlanStepOut.cpp

Jim Ingham jingham at apple.com
Fri Feb 4 10:10:05 PST 2011


Author: jingham
Date: Fri Feb  4 12:10:05 2011
New Revision: 124880

URL: http://llvm.org/viewvc/llvm-project?rev=124880&view=rev
Log:
Remove errant semi-colon.

Modified:
    lldb/branches/apple/calcite/lldb/source/Target/ThreadPlanStepOut.cpp

Modified: lldb/branches/apple/calcite/lldb/source/Target/ThreadPlanStepOut.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/branches/apple/calcite/lldb/source/Target/ThreadPlanStepOut.cpp?rev=124880&r1=124879&r2=124880&view=diff
==============================================================================
--- lldb/branches/apple/calcite/lldb/source/Target/ThreadPlanStepOut.cpp (original)
+++ lldb/branches/apple/calcite/lldb/source/Target/ThreadPlanStepOut.cpp Fri Feb  4 12:10:05 2011
@@ -114,7 +114,7 @@
             if (site_sp && site_sp->IsBreakpointAtThisSite (m_return_bp_id))
             {
                 const uint32_t num_frames = m_thread.GetStackFrameCount();
-                if (m_stack_depth > num_frames);
+                if (m_stack_depth > num_frames)
                     SetPlanComplete();
 
                 // If there was only one owner, then we're done.  But if we also hit some





More information about the lldb-commits mailing list