Fixed an issue where SBFrame::GetDisassembly() was returning disassembly that
contained the current line marker. This is now an option which is not enabled
for the API disassembly call.



git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@133597 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Target/StackFrame.cpp b/source/Target/StackFrame.cpp
index a70e664..efc2f3f 100644
--- a/source/Target/StackFrame.cpp
+++ b/source/Target/StackFrame.cpp
@@ -262,8 +262,7 @@
                                    exe_ctx,
                                    0,
                                    0,
-                                   false,
-                                   false,
+                                   0,
                                    m_disassembly);
         if (m_disassembly.GetSize() == 0)
             return NULL;