Index: clang/lib/AST/Interp/ByteCodeExprGen.cpp =================================================================== --- clang/lib/AST/Interp/ByteCodeExprGen.cpp +++ clang/lib/AST/Interp/ByteCodeExprGen.cpp @@ -1887,9 +1887,16 @@ // Expressions with a composite return type. // For us, that means everything we don't // have a PrimType for. - if (!visit(E)) - return false; - return this->emitRetValue(E); + if (std::optional LocalOffset = this->allocateLocal(E)) { + if (!this->visitLocalInitializer(E, *LocalOffset)) + return false; + + if (!this->emitGetPtrLocal(*LocalOffset, E)) + return false; + return this->emitRetValue(E); + } + + return false; } /// Toplevel visitDecl(). Index: clang/test/AST/Interp/complex.cpp =================================================================== --- clang/test/AST/Interp/complex.cpp +++ clang/test/AST/Interp/complex.cpp @@ -38,6 +38,10 @@ static_assert(__imag(I2) == 0, ""); +// Standalone complex expressions. +static_assert(__real((_Complex float){1.0, 3.0}) == 1.0, ""); + + #if 0 /// FIXME: This should work in the new interpreter. constexpr _Complex double D2 = {12};