================ @@ -3485,11 +3485,27 @@ static bool evaluateVarDeclInit(EvalInfo &Info, const Expr *E, APValue::LValueBase Base(VD, Frame ? Frame->Index : 0, Version); + auto CheckUninitReference = [&] { + if (!Result->hasValue() && VD->getType()->isReferenceType()) { + // We can't use an uninitialized reference directly. + if (!AllowConstexprUnknown) { + if (!Info.checkingPotentialConstantExpression()) + Info.FFDiag(E, diag::note_constexpr_use_uninit_reference); + return false; + } + Result = &Info.CurrentCall->createConstexprUnknownAPValues(VD, Base); + } + return true; + }; + // If this is a local variable, dig out its value. if (Frame) { Result = Frame->getTemporary(VD, Version); - if (Result) + if (Result) { + if (!CheckUninitReference()) + return false; ---------------- cor3ntin wrote:
`return CheckUninitReference();` https://github.com/llvm/llvm-project/pull/132990 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits