[clang] [Clang][CodeGen] Bail out on constexpr unknown values in ConstantEmitter (PR #127525)
via cfe-commits
cfe-commits at lists.llvm.org
Thu Feb 20 09:03:48 PST 2025
================
@@ -1883,8 +1883,10 @@ llvm::Constant *ConstantEmitter::tryEmitPrivateForVarInit(const VarDecl &D) {
// Try to emit the initializer. Note that this can allow some things that
// are not allowed by tryEmitPrivateForMemory alone.
- if (APValue *value = D.evaluateValue())
- return tryEmitPrivateForMemory(*value, destType);
+ if (APValue *value = D.evaluateValue()) {
+ if (!value->allowConstexprUnknown())
+ return tryEmitPrivateForMemory(*value, destType);
----------------
cor3ntin wrote:
I think a comment here would be useful
https://github.com/llvm/llvm-project/pull/127525
More information about the cfe-commits
mailing list