Index: clang/lib/AST/Interp/ByteCodeExprGen.cpp =================================================================== --- clang/lib/AST/Interp/ByteCodeExprGen.cpp +++ clang/lib/AST/Interp/ByteCodeExprGen.cpp @@ -675,8 +675,10 @@ // Primitive values. if (std::optional T = classify(E->getType())) { - assert(E->getNumInits() == 1); assert(!DiscardResult); + if (E->getNumInits() == 0) + return this->visitZeroInitializer(E->getType(), E); + assert(E->getNumInits() == 1); return this->delegate(E->inits()[0]); } Index: clang/test/AST/Interp/literals.cpp =================================================================== --- clang/test/AST/Interp/literals.cpp +++ clang/test/AST/Interp/literals.cpp @@ -91,6 +91,15 @@ // ref-error {{not an integral constant expression}} \ // ref-note {{outside the range of representable values}} \ +namespace PrimitiveEmptyInitList { + constexpr int a = {}; + static_assert(a == 0, ""); + constexpr bool b = {}; + static_assert(!b, ""); + constexpr double d = {}; + static_assert(d == 0.0, ""); +} + enum E {}; constexpr E e = static_cast(0);