[Lldb-commits] [lldb] [lldb][DWARF] Fix adding children to clang type that hasn't started definition. (PR #93839)
Michael Buch via lldb-commits
lldb-commits at lists.llvm.org
Thu May 30 09:03:53 PDT 2024
================
@@ -13,12 +13,18 @@
using namespace lldb_private::dwarf;
using namespace lldb_private::plugin::dwarf;
+static bool IsStructOrClassTag(llvm::dwarf::Tag Tag) {
----------------
Michael137 wrote:
Ah yes in `SymbolFileDWARF::FindDefinitionTypeForDWARFDeclContext` we have the same kind of check. Maybe one could consolidate those in one API? But might not be worth the churn, so feel free to ignore
https://github.com/llvm/llvm-project/pull/93839
More information about the lldb-commits
mailing list