This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 743e1ec [test] Remove implicit deps on libLTO.dylib on Darwin (NFC) new b5e3c67 [index] Add SymbolSubKind for the GKInspectable annotation. new b0eb287 Accept nullability qualifiers on array parameters. new e4c8953 Add -Wnullability-completeness-on-arrays. new 768c84e Warn when 'assume_nonnull' infers nullability within an array. new 9969f6c Don't require nullability on 'va_list'.
The 5 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/AST/Type.h | 27 +- include/clang/Basic/DiagnosticGroups.td | 5 +- include/clang/Basic/DiagnosticSemaKinds.td | 9 + include/clang/Index/IndexSymbol.h | 3 +- include/clang/Sema/Sema.h | 6 +- lib/AST/ASTContext.cpp | 10 +- lib/CodeGen/CGDebugInfo.cpp | 15 +- lib/Index/IndexSymbol.cpp | 6 + lib/Lex/PPMacroExpansion.cpp | 1 + lib/Parse/ParseDecl.cpp | 5 +- lib/Sema/SemaType.cpp | 308 +++++++++++++++------ test/FixIt/nullability.mm | 68 +++++ test/Index/Core/index-subkinds.m | 8 + test/Parser/nullability.c | 8 + test/Sema/nullability.c | 52 ++++ test/SemaCXX/nullability.cpp | 13 + test/SemaObjC/nullability.m | 23 ++ .../Inputs/nullability-consistency-arrays.h | 109 ++++++++ test/SemaObjCXX/nullability-consistency-arrays.mm | 12 + 19 files changed, 576 insertions(+), 112 deletions(-) create mode 100644 test/FixIt/nullability.mm create mode 100644 test/SemaObjCXX/Inputs/nullability-consistency-arrays.h create mode 100644 test/SemaObjCXX/nullability-consistency-arrays.mm