Author: Timm Baeder Date: 2026-05-27T06:02:14+02:00 New Revision: 22ba468002d561185371c06f899c8c753edc6750
URL: https://github.com/llvm/llvm-project/commit/22ba468002d561185371c06f899c8c753edc6750 DIFF: https://github.com/llvm/llvm-project/commit/22ba468002d561185371c06f899c8c753edc6750.diff LOG: [clang][bytecode] Fix non-defaulted union copy/move ctors (#199394) They are like regular record ctors. Added: Modified: clang/lib/AST/ByteCode/Compiler.cpp clang/test/AST/ByteCode/unions.cpp Removed: ################################################################################ diff --git a/clang/lib/AST/ByteCode/Compiler.cpp b/clang/lib/AST/ByteCode/Compiler.cpp index 4d13cd7139f83..1e58d91861ad5 100644 --- a/clang/lib/AST/ByteCode/Compiler.cpp +++ b/clang/lib/AST/ByteCode/Compiler.cpp @@ -6856,8 +6856,8 @@ bool Compiler<Emitter>::compileConstructor(const CXXConstructorDecl *Ctor) { return false; bool IsUnion = R->isUnion(); - // Union copy and move ctors are special. - if (IsUnion && Ctor->isCopyOrMoveConstructor()) { + // Default union copy and move ctors are special. + if (IsUnion && Ctor->isCopyOrMoveConstructor() && Ctor->isDefaulted()) { LocOverrideScope<Emitter> LOS(this, SourceInfo{}); // No special case for NumFields == 0 here, so the Memcpy op diff --git a/clang/test/AST/ByteCode/unions.cpp b/clang/test/AST/ByteCode/unions.cpp index 399c4c891be00..5f3676785fde6 100644 --- a/clang/test/AST/ByteCode/unions.cpp +++ b/clang/test/AST/ByteCode/unions.cpp @@ -386,6 +386,18 @@ namespace CopyCtor { static_assert(y.a == 42, ""); static_assert(y.b == 42, ""); // both-error {{constant expression}} \ // both-note {{'b' of union with active member 'a'}} + + /// Non-defaulted copy ctor. + union U2 { + int a; + constexpr U2() : a(100) {} + constexpr U2(const U2 &u) { + a = 20; + }; + }; + constexpr U2 u2; + constexpr U2 u22(u2); + static_assert(u22.a == 20, ""); } namespace UnionInBase { _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
