[Lldb-commits] [lldb] r163246 - /lldb/trunk/source/Target/StackFrameList.cpp
Jim Ingham
jingham at apple.com
Wed Sep 5 14:14:28 PDT 2012
Author: jingham
Date: Wed Sep 5 16:14:28 2012
New Revision: 163246
URL: http://llvm.org/viewvc/llvm-project?rev=163246&view=rev
Log:
Turn on the "fancy inlined stepping."
Modified:
lldb/trunk/source/Target/StackFrameList.cpp
Modified: lldb/trunk/source/Target/StackFrameList.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Target/StackFrameList.cpp?rev=163246&r1=163245&r2=163246&view=diff
==============================================================================
--- lldb/trunk/source/Target/StackFrameList.cpp (original)
+++ lldb/trunk/source/Target/StackFrameList.cpp Wed Sep 5 16:14:28 2012
@@ -93,12 +93,10 @@
}
}
-static const bool LLDB_FANCY_INLINED_STEPPING = false;
-
void
StackFrameList::ResetCurrentInlinedDepth ()
{
- if (LLDB_FANCY_INLINED_STEPPING && m_show_inlined_frames)
+ if (m_show_inlined_frames)
{
GetFramesUpTo(0);
if (!m_frames[0]->IsInlined())
More information about the lldb-commits
mailing list