[Lldb-commits] [PATCH] D77450: Fix LLDB debug builds

Phabricator via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Fri Apr 3 20:02:38 PDT 2020


This revision was automatically updated to reflect the committed changes.
Closed by commit rG966122524b56: Fix LLDB debug builds (authored by Walter Erquinigo <wallace at fb.com>).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D77450/new/

https://reviews.llvm.org/D77450

Files:
  lldb/source/Target/ThreadPlan.cpp


Index: lldb/source/Target/ThreadPlan.cpp
===================================================================
--- lldb/source/Target/ThreadPlan.cpp
+++ lldb/source/Target/ThreadPlan.cpp
@@ -240,7 +240,7 @@
   fprintf(stderr,
           "error: %s called on thread that has been destroyed (tid = 0x%" PRIx64
           ", ptid = 0x%" PRIx64 ")",
-          LLVM_PRETTY_FUNCTION, m_thread.GetID(), m_thread.GetProtocolID());
+          LLVM_PRETTY_FUNCTION, GetThread().GetID(), GetThread().GetProtocolID());
 #else
   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_THREAD));
   if (log)


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D77450.254992.patch
Type: text/x-patch
Size: 598 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20200404/4105e8b3/attachment.bin>


More information about the lldb-commits mailing list