diff options
Diffstat (limited to 'contrib/llvm/tools/lldb/source/Symbol/LineTable.cpp')
-rw-r--r-- | contrib/llvm/tools/lldb/source/Symbol/LineTable.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/contrib/llvm/tools/lldb/source/Symbol/LineTable.cpp b/contrib/llvm/tools/lldb/source/Symbol/LineTable.cpp index 92b243d..3b951f5 100644 --- a/contrib/llvm/tools/lldb/source/Symbol/LineTable.cpp +++ b/contrib/llvm/tools/lldb/source/Symbol/LineTable.cpp @@ -542,8 +542,7 @@ LineTable::LinkLineTable (const FileRangeMap &file_range_map) // This entry doesn't have a remapping and it needs to be removed. // Watch out in case we need to terminate a previous entry needs to // be terminated now that one line entry in a sequence is not longer valid. - if (!entry.is_terminal_entry && - !sequence.m_entries.empty() && + if (!sequence.m_entries.empty() && !sequence.m_entries.back().is_terminal_entry) { terminate_previous_entry = true; |