[Lldb-commits] [lldb] [SymbolFileDWARF][NFC] Remove duplicated code checking for type tags (PR #74773)
Greg Clayton via lldb-commits
lldb-commits at lists.llvm.org
Fri Dec 8 00:00:39 PST 2023
================
@@ -130,6 +130,10 @@ class PluginProperties : public Properties {
}
};
+bool IsTypeTag(llvm::dwarf::Tag Tag) {
----------------
clayborg wrote:
Make static and rename to `IsClassOrStructType`. There are many other type tags in DWARF, so this doesn't make it clear that this funciton is only looking for `DW_TAG_class_type` or `DW_TAG_structure_type`.
https://github.com/llvm/llvm-project/pull/74773
More information about the lldb-commits
mailing list