This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 242de2f [Sema][TreeTransform] Re-create DesignatedInitExpr when a fie [...] new 6c99a55 [analyzer] Add StdLibraryFunctions checker. new f034d97 [Sema] Formatting warnings should see through Objective-C mes [...]
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 | 4 + lib/Sema/SemaChecking.cpp | 14 + lib/StaticAnalyzer/Checkers/CMakeLists.txt | 1 + .../Checkers/StdLibraryFunctionsChecker.cpp | 943 +++++++++++++++++++++ test/Analysis/std-c-library-functions.c | 184 ++++ test/Analysis/std-c-library-functions.cpp | 14 + test/SemaObjC/format-strings-objc.m | 38 + 7 files changed, 1198 insertions(+) create mode 100644 lib/StaticAnalyzer/Checkers/StdLibraryFunctionsChecker.cpp create mode 100644 test/Analysis/std-c-library-functions.c create mode 100644 test/Analysis/std-c-library-functions.cpp