This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from b6c8a1bb5f Fix crash deserializing a CUDAKernelCallExpr with a +Asserts [...] new 46470dfbae [CFG] Add branch to skip vbase inits when they're handled by [...] new f0a581288c [analyzer] Add a prunable note for skipping vbase inits in s [...]
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/Analysis/AnalysisDeclContext.h | 1 + include/clang/Analysis/CFG.h | 23 +++- .../StaticAnalyzer/Core/BugReporter/BugReporter.h | 10 +- .../StaticAnalyzer/Core/PathSensitive/CoreEngine.h | 9 ++ .../StaticAnalyzer/Core/PathSensitive/ExprEngine.h | 4 +- lib/Analysis/AnalysisDeclContext.cpp | 3 +- lib/Analysis/CFG.cpp | 38 +++++- lib/StaticAnalyzer/Core/AnalysisManager.cpp | 4 +- lib/StaticAnalyzer/Core/BugReporterVisitors.cpp | 4 +- lib/StaticAnalyzer/Core/CoreEngine.cpp | 47 +++++++ lib/StaticAnalyzer/Core/ExprEngineCXX.cpp | 27 ++-- lib/StaticAnalyzer/Core/PathDiagnostic.cpp | 10 +- test/Analysis/diagnostics/initializer.cpp | 44 ++++++ test/Analysis/initializer.cpp | 91 ++++++++++++ test/Analysis/initializers-cfg-output.cpp | 152 ++++++++++++++++----- 15 files changed, 398 insertions(+), 69 deletions(-) create mode 100644 test/Analysis/diagnostics/initializer.cpp