This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 0968b29 Use std::string instead of StringRef when generating the auxi [...] new c45b5c8 Reimplement ExternalSemaSource delegation in terms of Multipl [...] new d3b0a63 [ObjC] Implement @available in the Parser and AST
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-c/Index.h | 6 +- include/clang/AST/Availability.h | 63 +++++++++++ include/clang/AST/ExprObjC.h | 47 ++++++++- include/clang/AST/RecursiveASTVisitor.h | 1 + include/clang/Basic/DiagnosticGroups.td | 1 + include/clang/Basic/DiagnosticParseKinds.td | 15 +++ include/clang/Basic/DiagnosticSemaKinds.td | 3 + include/clang/Basic/StmtNodes.td | 1 + include/clang/Basic/TokenKinds.def | 3 + include/clang/Parse/Parser.h | 4 + include/clang/Sema/Sema.h | 5 + include/clang/Serialization/ASTBitCodes.h | 4 +- lib/AST/Expr.cpp | 1 + lib/AST/ExprClassification.cpp | 1 + lib/AST/ExprConstant.cpp | 1 + lib/AST/ItaniumMangle.cpp | 1 + lib/AST/StmtPrinter.cpp | 5 + lib/AST/StmtProfile.cpp | 5 + lib/Frontend/ChainedIncludesSource.cpp | 156 +++++++--------------------- lib/Parse/ParseDecl.cpp | 2 +- lib/Parse/ParseExpr.cpp | 116 +++++++++++++++++++++ lib/Parse/ParseObjc.cpp | 2 + lib/Sema/SemaExceptionSpec.cpp | 1 + lib/Sema/SemaExpr.cpp | 24 +++++ lib/Sema/TreeTransform.h | 6 ++ lib/Serialization/ASTReaderStmt.cpp | 11 ++ lib/Serialization/ASTWriterStmt.cpp | 7 ++ lib/StaticAnalyzer/Core/ExprEngine.cpp | 1 + test/Parser/objc-available.m | 24 +++++ tools/libclang/CIndex.cpp | 2 + tools/libclang/CXCursor.cpp | 6 +- 31 files changed, 400 insertions(+), 125 deletions(-) create mode 100644 include/clang/AST/Availability.h create mode 100644 test/Parser/objc-available.m