Skip to content

Commit 1200d35

Browse files
[IR] Bump AttributeBitSet width to 16 bytes (#106138)
1 parent 085587e commit 1200d35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/IR/AttributeImpl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ class ConstantRangeListAttributeImpl final
275275

276276
class AttributeBitSet {
277277
/// Bitset with a bit for each available attribute Attribute::AttrKind.
278-
uint8_t AvailableAttrs[12] = {};
278+
uint8_t AvailableAttrs[16] = {};
279279
static_assert(Attribute::EndAttrKinds <= sizeof(AvailableAttrs) * CHAR_BIT,
280280
"Too many attributes");
281281

0 commit comments

Comments
 (0)