This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/llvm-release-aarch64-next-allmodconfig in repository toolchain/ci/llvm-project.
from 8e7ae355ba9 [llvm-objcopy] Avoid invalid Sec.Offset after D79229 adds 98f9f73f6d2 [Sema] Allow function attribute patchable_function_entry on [...] adds 1d1469ab642 BPF: fix a CORE optimization bug adds 9c80516d3e3 PR45000: Let Sema::SubstParmVarDecl handle default args of [...] adds bab8d1790a3 [MachineSink] Fix for breaking phi edges with instructions [...] adds db810b69f80 [libclang] Remove duplicate dependency on LLVMSupport adds 7ae6db9cf0c clang-format: Fix pointer alignment for overloaded operator [...] adds baeb500a8ca [clang-format] [PR45357] Fix issue found with operator spacing adds f082d918016 [profile] Don't crash when forking in several threads adds 3ab301b4d97 [CodeGen] only add nobuiltin to inline builtins if we'll emit them adds eaae6dfc545 [CodeGen] fix inline builtin-related breakage from D78162
No new revisions were added by this update.
Summary of changes: clang/include/clang/AST/DeclBase.h | 9 +- clang/include/clang/Basic/Attr.td | 2 +- clang/lib/AST/DeclBase.cpp | 5 +- clang/lib/CodeGen/CodeGenModule.cpp | 11 +- clang/lib/Driver/ToolChains/Darwin.cpp | 1 + clang/lib/Format/TokenAnnotator.cpp | 52 +++++--- clang/lib/Sema/SemaTemplateInstantiate.cpp | 2 +- clang/lib/Sema/SemaTemplateInstantiateDecl.cpp | 2 +- clang/lib/Sema/TreeTransform.h | 13 -- .../CodeGen/memcpy-no-nobuiltin-if-not-emitted.c | 25 ++++ .../CodeGen/memcpy-no-nobuiltin-if-not-emitted.cpp | 16 +++ clang/test/Sema/patchable-function-entry-attr.cpp | 1 + clang/test/SemaCXX/vartemplate-lambda.cpp | 8 +- .../test/SemaTemplate/instantiate-local-class.cpp | 13 ++ clang/tools/libclang/CMakeLists.txt | 1 - clang/unittests/Format/FormatTest.cpp | 60 ++++++++- compiler-rt/lib/profile/GCDAProfiling.c | 54 +++++++- .../Inputs/instrprof-gcov-multithread_fork.cpp | 35 ++++++ .../profile/instrprof-gcov-multithread_fork.test | 11 ++ llvm/lib/CodeGen/MachineSink.cpp | 30 ++--- llvm/lib/Target/BPF/BPFMISimplifyPatchable.cpp | 13 +- .../Transforms/Instrumentation/GCOVProfiling.cpp | 140 +++++++++++++++------ llvm/test/CodeGen/ARM/machine-sink-multidef.ll | 56 +++++++++ llvm/test/CodeGen/BPF/CORE/store-addr.ll | 107 ++++++++++++++++ 24 files changed, 572 insertions(+), 95 deletions(-) create mode 100644 clang/test/CodeGen/memcpy-no-nobuiltin-if-not-emitted.c create mode 100644 clang/test/CodeGen/memcpy-no-nobuiltin-if-not-emitted.cpp create mode 100644 compiler-rt/test/profile/Inputs/instrprof-gcov-multithread_fork.cpp create mode 100644 compiler-rt/test/profile/instrprof-gcov-multithread_fork.test create mode 100644 llvm/test/CodeGen/ARM/machine-sink-multidef.ll create mode 100644 llvm/test/CodeGen/BPF/CORE/store-addr.ll