[clang] [BoundsSafety] Support bounds-safety attributes in type positions (PR #179612)
Yeoul Na via cfe-commits
cfe-commits at lists.llvm.org
Sat Feb 7 06:07:02 PST 2026
================
@@ -156,6 +156,8 @@ static TypeCode getTypeCodeForTypeClass(Type::TypeClass id) {
#define TYPE_BIT_CODE(CLASS_ID, CODE_ID, CODE_VALUE) \
case Type::CLASS_ID: return TYPE_##CODE_ID;
#include "clang/Serialization/TypeBitCodes.def"
+ case Type::LateParsedAttr:
----------------
rapidsna wrote:
Added several missing tests including serialization tests for late parsed type attributes.
https://github.com/llvm/llvm-project/pull/179612
More information about the cfe-commits
mailing list