diff options
author | Jason Molenda <jmolenda@apple.com> | 2018-07-12 22:45:41 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 2018-07-12 22:45:41 +0000 |
commit | a2476ab7c9a908761ed64f8df69475da7b8dbabe (patch) | |
tree | 86975f2dd624cee171aaa948a31efc8494cf4675 /lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp | |
parent | 4d51a90297d34389b53c00c5cd6fa6f73998c298 (diff) | |
download | bcm5719-llvm-a2476ab7c9a908761ed64f8df69475da7b8dbabe.tar.gz bcm5719-llvm-a2476ab7c9a908761ed64f8df69475da7b8dbabe.zip |
Remove incorrect thread-pc-values clearing
from ProcessGDBRemote::UpdateThreadIDsFromStopReplyThreadsValue.
Patch by Venkata Ramanaiah.
Differential Revision: https://reviews.llvm.org/D48868
llvm-svn: 336956
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp index cca233f1719..547dd0d4108 100644 --- a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp @@ -1523,7 +1523,6 @@ void ProcessGDBRemote::ClearThreadIDList() { size_t ProcessGDBRemote::UpdateThreadIDsFromStopReplyThreadsValue(std::string &value) { m_thread_ids.clear(); - m_thread_pcs.clear(); size_t comma_pos; lldb::tid_t tid; while ((comma_pos = value.find(',')) != std::string::npos) { |