[Lldb-commits] [lldb] r360397 - Disable the step over skipping calls feature since buildbots are not happy.

Greg Clayton via lldb-commits lldb-commits at lists.llvm.org
Thu May 9 17:13:03 PDT 2019


Author: gclayton
Date: Thu May  9 17:13:03 2019
New Revision: 360397

URL: http://llvm.org/viewvc/llvm-project?rev=360397&view=rev
Log:
Disable the step over skipping calls feature since buildbots are not happy.


Modified:
    lldb/trunk/source/Core/Disassembler.cpp

Modified: lldb/trunk/source/Core/Disassembler.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Core/Disassembler.cpp?rev=360397&r1=360396&r2=360397&view=diff
==============================================================================
--- lldb/trunk/source/Core/Disassembler.cpp (original)
+++ lldb/trunk/source/Core/Disassembler.cpp Thu May  9 17:13:03 2019
@@ -1095,8 +1095,8 @@ InstructionList::GetIndexOfNextBranchIns
   size_t i;
   for (i = start; i < num_instructions; i++) {
     if (m_instructions[i]->DoesBranch()) {
-      if (ignore_calls && m_instructions[i]->IsCall())
-        continue;
+//      if (ignore_calls && m_instructions[i]->IsCall())
+//        continue;
       next_branch = i;
       break;
     }




More information about the lldb-commits mailing list