Skip to content

Commit 23a7971

Browse files
committed
Disable the step over skipping calls feature since buildbots are not happy.
llvm-svn: 360397
1 parent 5c31c05 commit 23a7971

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lldb/source/Core/Disassembler.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1095,8 +1095,8 @@ InstructionList::GetIndexOfNextBranchInstruction(uint32_t start,
10951095
size_t i;
10961096
for (i = start; i < num_instructions; i++) {
10971097
if (m_instructions[i]->DoesBranch()) {
1098-
if (ignore_calls && m_instructions[i]->IsCall())
1099-
continue;
1098+
// if (ignore_calls && m_instructions[i]->IsCall())
1099+
// continue;
11001100
next_branch = i;
11011101
break;
11021102
}

0 commit comments

Comments
 (0)