https://github.com/tbaederr created https://github.com/llvm/llvm-project/pull/204910
Unions can't have base classes so this is never used. >From 1cb58177ffe7997f52fd9b19b32da66d6cc7f6c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timm=20B=C3=A4der?= <[email protected]> Date: Sat, 20 Jun 2026 06:51:15 +0200 Subject: [PATCH] [clang][bytecode][NFC] Remove dead code Unions can't have base classes so this is never used. --- clang/lib/AST/ByteCode/Compiler.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/clang/lib/AST/ByteCode/Compiler.cpp b/clang/lib/AST/ByteCode/Compiler.cpp index e8572afe8f69c..9444eeb0c2ad3 100644 --- a/clang/lib/AST/ByteCode/Compiler.cpp +++ b/clang/lib/AST/ByteCode/Compiler.cpp @@ -6962,9 +6962,6 @@ bool Compiler<Emitter>::compileConstructor(const CXXConstructorDecl *Ctor) { return false; } - if (IsUnion && !this->emitActivate(InitExpr)) - return false; - if (!this->visitInitializerPop(InitExpr)) return false; } else if (const IndirectFieldDecl *IFD = Init->getIndirectMember()) { _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
