This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 58419897ad Teach __builtin_unpredictable to work through implicit casts. new f89e5ce850 [AST] Store "UsesADL" information in CallExpr.
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: docs/LibASTMatchersReference.html | 22 +++++++++ include/clang/AST/Expr.h | 21 +++++++-- include/clang/AST/ExprCXX.h | 24 +++++----- include/clang/AST/Stmt.h | 3 ++ include/clang/ASTMatchers/ASTMatchers.h | 22 +++++++++ include/clang/Sema/Overload.h | 13 ++++-- include/clang/Sema/Sema.h | 30 ++++++------- lib/AST/ASTDumper.cpp | 6 +++ lib/AST/ASTImporter.cpp | 5 ++- lib/AST/Expr.cpp | 15 ++++--- lib/ASTMatchers/Dynamic/Registry.cpp | 1 + lib/Sema/SemaExpr.cpp | 22 ++++----- lib/Sema/SemaOverload.cpp | 64 +++++++++++++-------------- lib/Serialization/ASTReaderStmt.cpp | 1 + lib/Serialization/ASTWriterStmt.cpp | 1 + test/AST/ast-dump-expr.cpp | 43 ++++++++++++++++++ test/Import/call-expr/Inputs/F.cpp | 10 +++++ test/Import/call-expr/test.cpp | 8 ++++ unittests/ASTMatchers/ASTMatchersNodeTest.cpp | 34 ++++++++++++++ 19 files changed, 264 insertions(+), 81 deletions(-) create mode 100644 test/Import/call-expr/Inputs/F.cpp create mode 100644 test/Import/call-expr/test.cpp