From 23a7971ddff4508d1502a44582d5204c578202cd Mon Sep 17 00:00:00 2001 From: Greg Clayton Date: Fri, 10 May 2019 00:13:03 +0000 Subject: Disable the step over skipping calls feature since buildbots are not happy. llvm-svn: 360397 --- lldb/source/Core/Disassembler.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lldb/source/Core/Disassembler.cpp') diff --git a/lldb/source/Core/Disassembler.cpp b/lldb/source/Core/Disassembler.cpp index af7cf82d470..b1ec003b33a 100644 --- a/lldb/source/Core/Disassembler.cpp +++ b/lldb/source/Core/Disassembler.cpp @@ -1095,8 +1095,8 @@ InstructionList::GetIndexOfNextBranchInstruction(uint32_t start, 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; } -- cgit v1.2.3