[Lldb-commits] [lldb] [lldb] Don't use Module's SymbolFileFileSpec to determine debug info (PR #210206)
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Mon Jul 20 09:03:50 PDT 2026
================
@@ -1259,7 +1259,7 @@ void Module::SectionFileAddressesChanged() {
}
UnwindTable &Module::GetUnwindTable() {
- if (!m_symfile_spec)
+ if (!m_symfile_up)
----------------
JDevlieghere wrote:
The other call sites have `GetSymbolFile(/*can_create=*/true)` but not here. Why? But this also suffers from the same issue I mentioned earlier.
https://github.com/llvm/llvm-project/pull/210206
More information about the lldb-commits
mailing list