This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from cac72db70c [ASTImporter] Changed use of Import to Import_New in ASTImporter. new b129ce9436 Re-commit r347417 "Re-Reinstate 347294 with a fix for the fa [...]
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: include/clang/AST/Expr.h | 16 ++- lib/AST/ASTImporter.cpp | 2 +- lib/AST/Expr.cpp | 22 +-- lib/AST/ExprConstant.cpp | 148 +++++++++++++------ lib/Analysis/CFG.cpp | 19 ++- lib/CodeGen/CGBuiltin.cpp | 54 +++++-- lib/CodeGen/CGDebugInfo.cpp | 6 +- lib/CodeGen/CGExprScalar.cpp | 11 +- lib/CodeGen/CGOpenMPRuntime.cpp | 11 +- lib/CodeGen/CGStmt.cpp | 4 +- lib/CodeGen/CGStmtOpenMP.cpp | 6 +- lib/CodeGen/CodeGenFunction.cpp | 5 +- lib/Sema/AnalysisBasedWarnings.cpp | 7 +- lib/Sema/SemaCast.cpp | 5 +- lib/Sema/SemaChecking.cpp | 47 +++--- lib/Sema/SemaDecl.cpp | 6 +- lib/Sema/SemaDeclCXX.cpp | 2 + lib/Sema/SemaExpr.cpp | 74 ++++++---- lib/Sema/SemaInit.cpp | 5 +- lib/Sema/SemaOpenMP.cpp | 47 +++--- lib/Sema/SemaOverload.cpp | 2 +- lib/Sema/SemaStmt.cpp | 5 +- lib/Sema/SemaStmtAsm.cpp | 5 +- lib/Sema/SemaTemplateDeduction.cpp | 4 + lib/Sema/SemaType.cpp | 4 - .../Checkers/BuiltinFunctionChecker.cpp | 5 +- .../Checkers/CheckSecuritySyntaxOnly.cpp | 5 +- .../Checkers/MallocOverflowSecurityChecker.cpp | 9 +- .../Checkers/NumberObjectConversionChecker.cpp | 5 +- lib/StaticAnalyzer/Core/ExprEngine.cpp | 3 - lib/StaticAnalyzer/Core/ExprEngineC.cpp | 5 +- lib/StaticAnalyzer/Core/SValBuilder.cpp | 4 +- test/Analysis/builtin-functions.cpp | 6 +- test/CodeGen/builtin-constant-p.c | 159 +++++++++++++++++++++ test/CodeGenCXX/builtin-constant-p.cpp | 24 ++++ test/Sema/builtins.c | 9 ++ test/SemaCXX/compound-literal.cpp | 5 +- test/SemaCXX/constant-expression-cxx1y.cpp | 8 ++ 38 files changed, 567 insertions(+), 197 deletions(-) create mode 100644 test/CodeGen/builtin-constant-p.c create mode 100644 test/CodeGenCXX/builtin-constant-p.cpp