[Lldb-commits] [lldb] [WIP][lldb][DWARFASTParserClang] Eagerly search definitions for Objective-C classes (PR #119860)
Michael Buch via lldb-commits
lldb-commits at lists.llvm.org
Fri Dec 13 03:32:24 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) {
----------------
Michael137 wrote:
This is pretty much copied from `ParseEnum`
https://github.com/llvm/llvm-project/pull/119860
More information about the lldb-commits
mailing list