diff options
author | Greg Clayton <clayborg@gmail.com> | 2019-05-10 00:13:03 +0000 |
---|---|---|
committer | Greg Clayton <clayborg@gmail.com> | 2019-05-10 00:13:03 +0000 |
commit | 23a7971ddff4508d1502a44582d5204c578202cd (patch) | |
tree | c96d620ca5e2b14d89961626d9f010a007dc8fde /lldb/source/Core/Disassembler.cpp | |
parent | 5c31c05fbde371e03c057080a05eeb18dda4c4ff (diff) | |
download | bcm5719-llvm-23a7971ddff4508d1502a44582d5204c578202cd.tar.gz bcm5719-llvm-23a7971ddff4508d1502a44582d5204c578202cd.zip |
Disable the step over skipping calls feature since buildbots are not happy.
llvm-svn: 360397
Diffstat (limited to 'lldb/source/Core/Disassembler.cpp')
-rw-r--r-- | lldb/source/Core/Disassembler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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; } |