This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 2aad00a Defensively ensure that GetExternalDeclStmt protects itself f [...] new 49bcc8d [analyzer] Teach the MallocChecker about about Glib API new ab6b808 [analyzer] Add bug visitor for taint checker. new 5a343ec [analyzer] Improve usability of ExprInspectionChecker new de95e09 [analyzer] Extend taint propagation and checking to support L [...]
The 4 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: docs/analyzer/DebugChecks.rst | 8 +- .../StaticAnalyzer/Core/PathSensitive/Store.h | 24 ++++++ .../Checkers/ExprInspectionChecker.cpp | 4 +- .../Checkers/GenericTaintChecker.cpp | 85 +++++++++++++++++++++- lib/StaticAnalyzer/Checkers/MallocChecker.cpp | 47 ++++++++++-- lib/StaticAnalyzer/Core/RegionStore.cpp | 5 ++ test/Analysis/explain-svals.c | 25 +++++++ test/Analysis/gmalloc.c | 59 +++++++++++++++ test/Analysis/taint-diagnostic-visitor.c | 13 ++++ test/Analysis/taint-generic.c | 37 ++++++++++ 10 files changed, 295 insertions(+), 12 deletions(-) create mode 100644 test/Analysis/explain-svals.c create mode 100644 test/Analysis/gmalloc.c create mode 100644 test/Analysis/taint-diagnostic-visitor.c