Skip to content

Commit bb2b04c

Browse files
authored
[lldb] Recognize DW_TAG_LLVM_ptrauth_type as a type qual (#90140)
Jonas upstreamed recognition of DW_TAG_LLVM_ptrauth_type https://reviews.llvm.org/D130215 but it isn't recognized as a type qualifier tag in DWARFASTParserClang::ParseTypeFromDWARF.
1 parent eb7dc99 commit bb2b04c

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -495,6 +495,7 @@ TypeSP DWARFASTParserClang::ParseTypeFromDWARF(const SymbolContext &sc,
495495
case DW_TAG_const_type:
496496
case DW_TAG_restrict_type:
497497
case DW_TAG_volatile_type:
498+
case DW_TAG_LLVM_ptrauth_type:
498499
case DW_TAG_atomic_type:
499500
case DW_TAG_unspecified_type: {
500501
type_sp = ParseTypeModifier(sc, die, attrs);

0 commit comments

Comments
 (0)