This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from d818d49 Fix clang-format vim integration issue with non-ascii characters new 27310e2 Add support for __builtin_os_log_format[_buffer_size]
The 1 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/Analyses/FormatString.h | 47 ++-- include/clang/Analysis/Analyses/OSLog.h | 155 ++++++++++++++ include/clang/Basic/Builtins.def | 4 + include/clang/Basic/DiagnosticSemaKinds.td | 15 ++ include/clang/Sema/Sema.h | 3 + lib/Analysis/CMakeLists.txt | 1 + lib/Analysis/FormatString.cpp | 3 + lib/Analysis/OSLog.cpp | 177 +++++++++++++++ lib/Analysis/PrintfFormatString.cpp | 43 +++- lib/CodeGen/CGBuiltin.cpp | 85 +++++++- lib/Sema/SemaChecking.cpp | 285 +++++++++++++++++++------ lib/Sema/SemaDeclAttr.cpp | 29 +-- test/CodeGen/builtins.c | 141 +++++++++++- test/CodeGenObjC/os_log.m | 39 ++++ test/SemaObjC/format-strings-oslog.m | 62 ++++++ 15 files changed, 994 insertions(+), 95 deletions(-) create mode 100644 include/clang/Analysis/Analyses/OSLog.h create mode 100644 lib/Analysis/OSLog.cpp create mode 100644 test/CodeGenObjC/os_log.m create mode 100644 test/SemaObjC/format-strings-oslog.m