Skip to content

Commit

Permalink
Remove incorrect thread-pc-values clearing
Browse files Browse the repository at this point in the history
from ProcessGDBRemote::UpdateThreadIDsFromStopReplyThreadsValue.

Patch by Venkata Ramanaiah.

Differential Revision: https://reviews.llvm.org/D48868

llvm-svn: 336956
  • Loading branch information
jasonmolenda committed Jul 12, 2018
1 parent 4d51a90 commit a2476ab
Showing 1 changed file with 0 additions and 1 deletion.
Expand Up @@ -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) {
Expand Down

0 comments on commit a2476ab

Please sign in to comment.