[Lldb-commits] [lldb] [WIP][lldb][DWARFASTParserClang] Eagerly search definitions for Objective-C classes (PR #119860)
Adrian Prantl via lldb-commits
lldb-commits at lists.llvm.org
Fri Dec 13 09:58:28 PST 2024
================
@@ -1671,43 +1671,84 @@ DWARFASTParserClang::ParseStructureLikeDIE(const SymbolContext &sc,
attrs.is_forward_declaration = true;
}
+ DWARFDIE def_die;
+ if (attrs.is_forward_declaration && cu_language == eLanguageTypeObjC) {
----------------
adrian-prantl wrote:
Would also be helpful to add a comment explaining why this block exists.
https://github.com/llvm/llvm-project/pull/119860
More information about the lldb-commits
mailing list