This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 197e8c7ceb [X86] Stop implicitly enabling avx512vl when avx512bf16 is enabled. new c786ab0af6 Implement __builtin_LINE() et. al. to support source locatio [...]
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/LanguageExtensions.rst | 55 +++ include/clang/AST/ASTContext.h | 15 + include/clang/AST/CurrentSourceLocExprScope.h | 75 ++++ include/clang/AST/Expr.h | 64 +++ include/clang/AST/ExprCXX.h | 33 +- include/clang/AST/RecursiveASTVisitor.h | 2 + include/clang/AST/Stmt.h | 12 + include/clang/Basic/StmtNodes.td | 1 + include/clang/Basic/TokenKinds.def | 5 + include/clang/Sema/Sema.h | 15 + include/clang/Serialization/ASTBitCodes.h | 3 + lib/AST/ASTContext.cpp | 25 ++ lib/AST/ASTImporter.cpp | 12 +- lib/AST/Expr.cpp | 89 +++- lib/AST/ExprCXX.cpp | 5 +- lib/AST/ExprClassification.cpp | 1 + lib/AST/ExprConstant.cpp | 37 +- lib/AST/ItaniumMangle.cpp | 1 + lib/AST/StmtPrinter.cpp | 4 + lib/AST/StmtProfile.cpp | 4 + lib/CodeGen/CGExpr.cpp | 12 +- lib/CodeGen/CGExprAgg.cpp | 3 +- lib/CodeGen/CGExprComplex.cpp | 3 +- lib/CodeGen/CGExprConstant.cpp | 4 - lib/CodeGen/CGExprScalar.cpp | 11 +- lib/CodeGen/CodeGenFunction.h | 22 +- lib/Parse/ParseExpr.cpp | 39 ++ lib/Sema/SemaDeclCXX.cpp | 6 +- lib/Sema/SemaExceptionSpec.cpp | 1 + lib/Sema/SemaExpr.cpp | 35 +- lib/Sema/SemaExprObjC.cpp | 7 +- lib/Sema/TreeTransform.h | 41 +- lib/Serialization/ASTReaderStmt.cpp | 15 + lib/Serialization/ASTWriterStmt.cpp | 11 + lib/StaticAnalyzer/Core/ExprEngine.cpp | 1 + test/CodeGenCXX/builtin-source-location.cpp | 268 ++++++++++++ test/CodeGenCXX/builtin_FUNCTION.cpp | 41 ++ test/CodeGenCXX/builtin_LINE.cpp | 95 +++++ test/CodeGenCXX/debug-info-line.cpp | 7 + test/Parser/builtin_source_location.c | 19 + test/Sema/source_location.c | 32 ++ test/SemaCXX/Inputs/source-location-file.h | 44 ++ test/SemaCXX/source_location.cpp | 590 ++++++++++++++++++++++++++ tools/libclang/CXCursor.cpp | 1 + 44 files changed, 1702 insertions(+), 64 deletions(-) create mode 100644 include/clang/AST/CurrentSourceLocExprScope.h create mode 100644 test/CodeGenCXX/builtin-source-location.cpp create mode 100644 test/CodeGenCXX/builtin_FUNCTION.cpp create mode 100644 test/CodeGenCXX/builtin_LINE.cpp create mode 100644 test/Parser/builtin_source_location.c create mode 100644 test/Sema/source_location.c create mode 100644 test/SemaCXX/Inputs/source-location-file.h create mode 100644 test/SemaCXX/source_location.cpp