[Lldb-commits] [PATCH] D77337: [lldb/Symbol] Reimplement Symbols::FindSymbolFileInBundle to use the VFS

Pavel Labath via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Thu Apr 2 23:57:47 PDT 2020


labath accepted this revision.
labath added a comment.
This revision is now accepted and ready to land.

looks fine, modulo the assert fail



================
Comment at: lldb/source/Symbol/LocateSymbolFileMacOSX.cpp:275
+      for (size_t i = 0; i < module_specs.GetSize(); ++i) {
+        assert(module_specs.GetModuleSpecAtIndex(i, spec));
+        if ((uuid == nullptr ||
----------------
this assert has side effects. that won't work in no-assert builds


Repository:
  rLLDB LLDB

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

https://reviews.llvm.org/D77337





More information about the lldb-commits mailing list