<rdar://problem/11852100>

The "stop-line-count-after" and "stop-line-count-before" settings are broken. This fixes them.



git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@160071 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Commands/CommandObjectFrame.cpp b/source/Commands/CommandObjectFrame.cpp
index 4dc4aa8..ab22919 100644
--- a/source/Commands/CommandObjectFrame.cpp
+++ b/source/Commands/CommandObjectFrame.cpp
@@ -282,14 +282,7 @@
 
                     bool show_frame_info = true;
                     bool show_source = !already_shown;
-                    Debugger &debugger = m_interpreter.GetDebugger();
-                    const uint32_t source_lines_before = debugger.GetStopSourceLineCount(true);
-                    const uint32_t source_lines_after = debugger.GetStopSourceLineCount(false);
-                    if (frame->GetStatus (result.GetOutputStream(),
-                                          show_frame_info,
-                                          show_source,
-                                          source_lines_before,
-                                          source_lines_after))
+                    if (frame->GetStatus (result.GetOutputStream(), show_frame_info, show_source))
                     {
                         result.SetStatus (eReturnStatusSuccessFinishResult);
                         return result.Succeeded();