diff --git a/clang/lib/AST/ASTContext.cpp b/clang/lib/AST/ASTContext.cpp --- a/clang/lib/AST/ASTContext.cpp +++ b/clang/lib/AST/ASTContext.cpp @@ -2002,7 +2002,8 @@ TypeInfo EltInfo = getTypeInfo(VT->getElementType()); Width = VT->isExtVectorBoolType() ? VT->getNumElements() : EltInfo.Width * VT->getNumElements(); - // Enforce at least byte alignment. + // Enforce at least byte size and alignment. + Width = std::max(8, Width); Align = std::max(8, Width); // If the alignment is not a power of 2, round up to the next power of 2. diff --git a/clang/test/SemaCXX/vector-bool.cpp b/clang/test/SemaCXX/vector-bool.cpp --- a/clang/test/SemaCXX/vector-bool.cpp +++ b/clang/test/SemaCXX/vector-bool.cpp @@ -90,3 +90,15 @@ foo(eight_bools.w); // expected-error@90 {{illegal vector component name ''w''}} foo(eight_bools.wyx); // expected-error@91 {{illegal vector component name ''wyx''}} } + +void Sizeof() { + using FourBools = bool __attribute__((ext_vector_type(4))); + using NineBools = bool __attribute__((ext_vector_type(9))); + using TwentyEightBools = bool __attribute__((ext_vector_type(28))); + using ThirtyThreeBools = bool __attribute__((ext_vector_type(33))); + static_assert(sizeof(FourBools) == 1); + static_assert(sizeof(EightBools) == 1); + static_assert(sizeof(NineBools) == 2); + static_assert(sizeof(TwentyEightBools) == 4); + static_assert(sizeof(ThirtyThreeBools) == 8); +}