From 21929d49d5375fbf937f66a69c001ccd2212cff2 Mon Sep 17 00:00:00 2001 From: Pavel Labath Date: Fri, 10 May 2019 06:57:25 +0000 Subject: Revert "Disable the step over skipping calls feature since buildbots are not happy." While this fixed the windows bot failures, it also broke all other bots. Upon closer inspection, it turns out that the windows bots were "broken" because two tests were unexpectedly passing -- i.e., the original patch (r360375) actually improved our stepping support on windows. So instead, I remove the relevant XFAILs. This reverts commit r360397. llvm-svn: 360407 --- 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 b1ec003b33a..af7cf82d470 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