[Lldb-commits] [lldb] r212485 - Allow specification of no source display on stop.
Todd Fiala
todd.fiala at gmail.com
Mon Jul 7 13:47:25 PDT 2014
Author: tfiala
Date: Mon Jul 7 15:47:24 2014
New Revision: 212485
URL: http://llvm.org/viewvc/llvm-project?rev=212485&view=rev
Log:
Allow specification of no source display on stop.
See http://llvm.org/bugs/show_bug.cgi?id=20149 for details.
Change by Randy Smith.
Modified:
lldb/trunk/source/Target/StackFrame.cpp
Modified: lldb/trunk/source/Target/StackFrame.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Target/StackFrame.cpp?rev=212485&r1=212484&r2=212485&view=diff
==============================================================================
--- lldb/trunk/source/Target/StackFrame.cpp (original)
+++ lldb/trunk/source/Target/StackFrame.cpp Mon Jul 7 15:47:24 2014
@@ -1444,13 +1444,12 @@ StackFrame::GetStatus (Stream& strm,
const uint32_t source_lines_after = debugger.GetStopSourceLineCount(false);
disasm_display = debugger.GetStopDisassemblyDisplay ();
- if (source_lines_before > 0 || source_lines_after > 0)
+ GetSymbolContext(eSymbolContextCompUnit | eSymbolContextLineEntry);
+ if (m_sc.comp_unit && m_sc.line_entry.IsValid())
{
- GetSymbolContext(eSymbolContextCompUnit | eSymbolContextLineEntry);
-
- if (m_sc.comp_unit && m_sc.line_entry.IsValid())
+ have_source = true;
+ if (source_lines_before > 0 || source_lines_after > 0)
{
- have_source = true;
target->GetSourceManager().DisplaySourceLinesWithLineNumbers (m_sc.line_entry.file,
m_sc.line_entry.line,
source_lines_before,
More information about the lldb-commits
mailing list