зеркало из https://github.com/microsoft/clang-1.git
Make Sema::CheckForConstantInitializer use Expr::Evaluate. This fixes PR3130.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@60580 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Родитель
96f560b96b
Коммит
9e09f5d361
|
@ -1651,8 +1651,13 @@ bool Sema::CheckArithmeticConstantExpression(const Expr* Init) {
|
|||
}
|
||||
|
||||
bool Sema::CheckForConstantInitializer(Expr *Init, QualType DclT) {
|
||||
Expr::EvalResult Result;
|
||||
|
||||
Init = Init->IgnoreParens();
|
||||
|
||||
if (Init->Evaluate(Result, Context) && !Result.HasSideEffects)
|
||||
return false;
|
||||
|
||||
// Look through CXXDefaultArgExprs; they have no meaning in this context.
|
||||
if (CXXDefaultArgExpr* DAE = dyn_cast<CXXDefaultArgExpr>(Init))
|
||||
return CheckForConstantInitializer(DAE->getExpr(), DclT);
|
||||
|
@ -1672,6 +1677,9 @@ bool Sema::CheckForConstantInitializer(Expr *Init, QualType DclT) {
|
|||
return false;
|
||||
}
|
||||
|
||||
// FIXME: We can probably remove some of this code below, now that
|
||||
// Expr::Evaluate is doing the heavy lifting for scalars.
|
||||
|
||||
if (Init->isNullPointerConstant(Context))
|
||||
return false;
|
||||
if (Init->getType()->isArithmeticType()) {
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
// RUN: clang -emit-llvm %s -o -
|
||||
|
||||
int a = 2.0 ? 1 : 2;
|
|
@ -19,5 +19,6 @@ int h0 = __builtin_types_compatible_p(int,float); // expected-warning {{extensio
|
|||
|
||||
short somefunc();
|
||||
|
||||
short t = __builtin_constant_p(5353) ? 42 : somefunc(); // expected-warning {{expression is not a constant, but is accepted as one by GNU extensions}}
|
||||
short t = __builtin_constant_p(5353) ? 42 : somefunc();
|
||||
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче