[Lldb-commits] [PATCH] D89156: [lldb] GetSharedModule: Collect old modules in SmallVector

Joseph Tremoulet via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Fri Oct 30 09:55:31 PDT 2020


JosephTremoulet added inline comments.


================
Comment at: lldb/source/Target/Target.cpp:2131-2132
+        for (ModuleSP &old_module_sp : old_modules) {
+          if (m_images.GetIndexForModule(old_module_sp.get()) !=
+              LLDB_INVALID_INDEX32) {
+            if (!did_replace) {
----------------
Oops, the new logging code needs this condition.  Will fix...


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D89156



More information about the lldb-commits mailing list