[next] Handle new BTFTagAttributedType

Introduced in llvm/llvm-project
3251ba2d0fcf5223fce3e270b91c54f548664b4e.
This commit is contained in:
Ben Barham
2022-04-28 14:12:02 -07:00
parent 59bc1c9b4a
commit ff42c48db4
3 changed files with 21 additions and 1 deletions

View File

@@ -89,6 +89,11 @@ public:
clang::QualType type = asImpl().readTypeRef();
return getASTContext().getQualifiedType(type, quals);
}
const clang::BTFTypeTagAttr *readBTFTypeTagAttr() {
llvm::report_fatal_error("Read BTFTypeTagAttr that should never have been"
" serialized");
}
};
}