[Lldb-commits] [lldb] [LLDB] Enable TLS Variable Debugging Without Location Info on AArch64 (PR #110822)
David Spickett via lldb-commits
lldb-commits at lists.llvm.org
Tue Oct 15 05:56:28 PDT 2024
================
@@ -3557,6 +3560,12 @@ VariableSP SymbolFileDWARF::ParseVariableDIE(const SymbolContext &sc,
}
}
+ // If It's a declaration then symbol not present in this symbolfile
+ // return early to try other linked objects.
+ if (is_declaration) {
+ return nullptr;
+ }
----------------
DavidSpickett wrote:
Parts like this I'm bothered by the effect they may have on existing lookups, but testing will address that.
https://github.com/llvm/llvm-project/pull/110822
More information about the lldb-commits
mailing list