================ @@ -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 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits