diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2013-01-24 22:11:45 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2013-01-24 22:11:45 +0000 |
commit | ad48a500596d7d678b99c7f94326cfa856c3b49f (patch) | |
tree | 0c85477f72f28170b11277f9bce540baa6719270 /lib/Sema/SemaDecl.cpp | |
parent | 6c23bd2890acdc87b9d52ac65108d36ecb703c0b (diff) |
Patch to check for integer overflow. It has been
commented on and approved by Richard Smith.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@173377 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaDecl.cpp')
-rw-r--r-- | lib/Sema/SemaDecl.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/Sema/SemaDecl.cpp b/lib/Sema/SemaDecl.cpp index ca9610b7d7..538434db00 100644 --- a/lib/Sema/SemaDecl.cpp +++ b/lib/Sema/SemaDecl.cpp @@ -7045,7 +7045,9 @@ void Sema::AddInitializerToDecl(Decl *RealDecl, Expr *Init, // struct T { S a, b; } t = { Temp(), Temp() } // // we should destroy the first Temp before constructing the second. - ExprResult Result = ActOnFinishFullExpr(Init, VDecl->getLocation()); + ExprResult Result = ActOnFinishFullExpr(Init, VDecl->getLocation(), + false, + VDecl->isConstexpr()); if (Result.isInvalid()) { VDecl->setInvalidDecl(); return; |