Index: clang/lib/AST/ExprConstant.cpp =================================================================== --- clang/lib/AST/ExprConstant.cpp +++ clang/lib/AST/ExprConstant.cpp @@ -13536,6 +13536,20 @@ if (Info.Ctx.getLangOpts().CPlusPlus && Info.InConstantContext && Info.EvalMode == EvalInfo::EM_ConstantExpression && DestType->isEnumeralType()) { + + bool NotConstexprVar = false; + + // We know if we are here that we are in a context that we might require + // a constant expression or a context that requires a constant + // value. But if we are initializing a value we don't know if it is a + // constexpr variable or not. We can check the EvaluatingDecl to determine + // if it constexpr or not. If not then we don't want to emit a diagnostic. + if (auto ValD = Info.EvaluatingDecl.dyn_cast()) { + const VarDecl *VD = dyn_cast_or_null(ValD); + if (VD && !VD->isConstexpr()) + NotConstexprVar = true; + } + const EnumType *ET = dyn_cast(DestType.getCanonicalType()); const EnumDecl *ED = ET->getDecl(); // Check that the value is within the range of the enumeration values. @@ -13557,12 +13571,14 @@ if (ED->getNumNegativeBits() && (Max.slt(Result.getInt().getSExtValue()) || - Min.sgt(Result.getInt().getSExtValue()))) - Info.Ctx.getDiagnostics().Report(E->getExprLoc(), - diag::warn_constexpr_unscoped_enum_out_of_range) - << llvm::toString(Result.getInt(),10) << Min.getSExtValue() << Max.getSExtValue(); + Min.sgt(Result.getInt().getSExtValue())) && + !NotConstexprVar) + Info.Ctx.getDiagnostics().Report( + E->getExprLoc(), diag::warn_constexpr_unscoped_enum_out_of_range) + << llvm::toString(Result.getInt(), 10) << Min.getSExtValue() + << Max.getSExtValue(); else if (!ED->getNumNegativeBits() && - Max.ult(Result.getInt().getZExtValue())) + Max.ult(Result.getInt().getZExtValue()) && !NotConstexprVar) Info.Ctx.getDiagnostics().Report(E->getExprLoc(), diag::warn_constexpr_unscoped_enum_out_of_range) << llvm::toString(Result.getInt(),10) << Min.getZExtValue() << Max.getZExtValue(); Index: clang/test/SemaCXX/constant-expression-cxx11.cpp =================================================================== --- clang/test/SemaCXX/constant-expression-cxx11.cpp +++ clang/test/SemaCXX/constant-expression-cxx11.cpp @@ -2419,6 +2419,13 @@ enum EMaxInt {emaxint1=-1, emaxint2=__INT_MAX__}; +enum NumberType {}; + +E2 testDefaultArgForParam(E2 e2Param = (E2)-1) { // ok, not a constant expression context + E2 e2LocalInit = e2Param; // ok, not a constant expression context + return e2LocalInit; +} + void testValueInRangeOfEnumerationValues() { constexpr E1 x1 = static_cast(-8); constexpr E1 x2 = static_cast(8); @@ -2454,6 +2461,8 @@ constexpr EMaxInt x19 = static_cast(__INT_MAX__-1); constexpr EMaxInt x20 = static_cast((long)__INT_MAX__+1); // expected-error@-1 {{integer value 2147483648 is outside the valid range of values [-2147483648, 2147483647] for this enumeration type}} + + const NumberType neg_one = (NumberType) ((NumberType) 0 - (NumberType) 1); // ok, not a constant expression context } enum SortOrder { @@ -2470,3 +2479,8 @@ return; } } + +GH50055::E2 GlobalInitNotCE1 = (GH50055::E2)-1; // ok, not a constant expression context +GH50055::E2 GlobalInitNotCE2 = GH50055::testDefaultArgForParam(); // ok, not a constant expression context +constexpr GH50055::E2 GlobalInitCE = (GH50055::E2)-1; +// expected-error@-1 {{integer value -1 is outside the valid range of values [0, 7] for this enumeration type}}