[Lldb-commits] [lldb] r116871 - /lldb/trunk/source/Target/ThreadPlanCallFunction.cpp

Sean Callanan scallanan at apple.com
Tue Oct 19 15:29:34 PDT 2010


Author: spyffe
Date: Tue Oct 19 17:29:33 2010
New Revision: 116871

URL: http://llvm.org/viewvc/llvm-project?rev=116871&view=rev
Log:
Removed a bit of dead code.  Thanks to Eric
Christopher for pointing it out.

Modified:
    lldb/trunk/source/Target/ThreadPlanCallFunction.cpp

Modified: lldb/trunk/source/Target/ThreadPlanCallFunction.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Target/ThreadPlanCallFunction.cpp?rev=116871&r1=116870&r2=116871&view=diff
==============================================================================
--- lldb/trunk/source/Target/ThreadPlanCallFunction.cpp (original)
+++ lldb/trunk/source/Target/ThreadPlanCallFunction.cpp Tue Oct 19 17:29:33 2010
@@ -174,11 +174,6 @@
     // If the subplan is running, any crashes are attributable to us.
     
     return (m_subplan_sp.get() != NULL);
-    
-    if (!m_subplan_sp)
-        return false;
-    else
-        return m_subplan_sp->PlanExplainsStop();
 }
 
 bool





More information about the lldb-commits mailing list