This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 08fd6d71b2 Update comment for <template-param-decl> mangling to match e [...] new f2f05530b6 [analyzer] pr43179: Make CallDescription defensive against C [...] new 71ee164e08 [analyzer] Add minimal support for fix-it hints.
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/StaticAnalyzer/Checkers/Checkers.td | 12 ++- .../clang/StaticAnalyzer/Core/AnalyzerOptions.def | 12 ++- .../StaticAnalyzer/Core/BugReporter/BugReporter.h | 36 ++++++--- .../Core/BugReporter/PathDiagnostic.h | 8 ++ .../StaticAnalyzer/Core/PathSensitive/CallEvent.h | 20 ++++- lib/StaticAnalyzer/Checkers/DeadStoresChecker.cpp | 91 ++++++++++++++-------- lib/StaticAnalyzer/Checkers/ValistChecker.cpp | 4 +- lib/StaticAnalyzer/Checkers/VirtualCallChecker.cpp | 14 ++++ lib/StaticAnalyzer/Core/BugReporter.cpp | 24 +++--- lib/StaticAnalyzer/Core/CallEvent.cpp | 6 +- lib/StaticAnalyzer/Core/PlistDiagnostics.cpp | 46 +++++++++++ lib/StaticAnalyzer/Frontend/AnalysisConsumer.cpp | 60 +++++++++----- test/Analysis/analyzer-config.c | 5 +- test/Analysis/cast-value-weird.cpp | 9 +++ test/Analysis/dead-stores.c | 32 ++++---- test/Analysis/edges-new.mm | 2 +- test/Analysis/objc-arc.m | 2 +- test/Analysis/plist-output.m | 2 +- test/Analysis/virtualcall-fixits.cpp | 45 +++++++++++ 19 files changed, 329 insertions(+), 101 deletions(-) create mode 100644 test/Analysis/cast-value-weird.cpp create mode 100644 test/Analysis/virtualcall-fixits.cpp