[Lldb-commits] [lldb] Improve type lookup using .debug_names parent chain (PR #108907)

via lldb-commits lldb-commits at lists.llvm.org
Wed Oct 9 12:36:46 PDT 2024


================
@@ -374,6 +375,21 @@ void DebugNamesDWARFIndex::GetFullyQualifiedType(
   m_fallback.GetFullyQualifiedType(context, callback);
 }
 
+bool DebugNamesDWARFIndex::SameAsEntryContext(
+    const CompilerContext &query_context,
+    const DebugNames::Entry &entry) const {
+  // TODO: check dwarf tag matches.
----------------
jeffreytan81 wrote:

No, it is not a long term todo. My 3rd PR in the stack will implement it. 

https://github.com/llvm/llvm-project/pull/108907


More information about the lldb-commits mailing list