This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 9842e28a41 [ExprConstant] Try fixing __builtin_constant_p after D54355 [...] new 62d639eafa [analyzer] Emit an error for invalid -analyzer-config inputs new e350174b21 Revert r347417 "Re-Reinstate 347294 with a fix for the failures."
The 2 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 +-- include/clang/Basic/DiagnosticDriverKinds.td | 3 + include/clang/Driver/CC1Options.td | 6 + .../clang/StaticAnalyzer/Core/AnalyzerOptions.h | 30 +++- lib/AST/ASTImporter.cpp | 2 +- lib/AST/Expr.cpp | 22 ++- lib/AST/ExprConstant.cpp | 147 ++++++------------- 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/Driver/ToolChains/Clang.cpp | 3 + lib/Frontend/CompilerInvocation.cpp | 79 +++++++--- 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/Analysis/invalid-analyzer-config-value.c | 71 +++++++++ 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 +- 43 files changed, 372 insertions(+), 575 deletions(-) create mode 100644 test/Analysis/invalid-analyzer-config-value.c delete mode 100644 test/CodeGen/builtin-constant-p.c delete mode 100644 test/CodeGenCXX/builtin-constant-p.cpp