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-master-arm-mainline-allmodconfig in repository toolchain/ci/llvm-project.
from 9f2ce5b915a [mlir][SystemZ] Fix incompatible datalayout in SystemZ adds 677929e3521 [AMDGPU] Process V_MOV_B32_indirect in SET_GPR_IDX optimization adds f7f8c1cd9ae [Support][unittest] Fix HostTest.NumPhysicalCores on __i386 [...] adds 20de2323a0a [Test] Add missing auto-generated checks into tests adds 58684fbb6f2 [NFC][PowerPC] Add 2 new cases to test livevars pass adds e71c537a487 [clang-format] Fix line lengths w/ comments in align adds 6ca54e01146 [libc] Add memset and bzero implementations adds b99bf0e08be [clang-format][PR45816] Add AlignConsecutiveBitFields adds cc918e90c04 [clang-format] [PR33890] Add support for Microsoft C++/CLI [...] adds 807ab2cd0db [clang-format] [PR42164] Add Option to Break before While adds b42b30c335b Revert "[IR] Simplify BasicBlock::removePredecessor. NFCI."
No new revisions were added by this update.
Summary of changes: clang/docs/ClangFormatStyleOptions.rst | 27 +++ clang/docs/ReleaseNotes.rst | 36 ++++ clang/include/clang/Format/Format.h | 30 +++- clang/lib/Format/Format.cpp | 78 +++++++-- clang/lib/Format/FormatTokenLexer.cpp | 24 +++ clang/lib/Format/FormatTokenLexer.h | 1 + clang/lib/Format/UnwrappedLineParser.cpp | 2 +- clang/lib/Format/WhitespaceManager.cpp | 33 +++- clang/lib/Format/WhitespaceManager.h | 3 + clang/unittests/Format/FormatTest.cpp | 73 ++++++++ libc/lib/CMakeLists.txt | 4 +- libc/src/string/CMakeLists.txt | 108 +++++++++--- libc/src/string/bzero.cpp | 19 ++ libc/src/string/bzero.h | 20 +++ libc/src/string/memory_utils/CMakeLists.txt | 1 + libc/src/string/memory_utils/memcpy_utils.h | 6 +- libc/src/string/memory_utils/memset_utils.h | 131 ++++++++++++++ libc/src/string/memset.cpp | 21 +++ libc/src/string/memset.h | 20 +++ libc/src/string/x86/CMakeLists.txt | 10 ++ libc/test/src/string/CMakeLists.txt | 43 +++-- .../src/string/{memcpy_test.cpp => bzero_test.cpp} | 14 +- libc/test/src/string/memcpy_test.cpp | 11 +- .../string/{memcpy_test.cpp => memset_test.cpp} | 42 ++--- llvm/include/llvm/IR/BasicBlock.h | 8 +- llvm/lib/IR/BasicBlock.cpp | 69 +++++--- llvm/lib/Target/AMDGPU/SIPreEmitPeephole.cpp | 8 +- .../CodeGen/AMDGPU/GlobalISel/insertelement.ll | 10 -- llvm/test/CodeGen/AMDGPU/set-gpr-idx-peephole.mir | 20 +++ llvm/test/CodeGen/PowerPC/livevars-crash1.mir | 90 ++++++++++ llvm/test/CodeGen/PowerPC/livevars-crash2.mir | 195 +++++++++++++++++++++ llvm/test/Transforms/PGOProfile/chr.ll | 46 +++++ llvm/unittests/Support/Host.cpp | 2 +- 33 files changed, 1058 insertions(+), 147 deletions(-) mode change 100644 => 100755 clang/include/clang/Format/Format.h create mode 100644 libc/src/string/bzero.cpp create mode 100644 libc/src/string/bzero.h create mode 100644 libc/src/string/memory_utils/memset_utils.h create mode 100644 libc/src/string/memset.cpp create mode 100644 libc/src/string/memset.h copy libc/test/src/string/{memcpy_test.cpp => bzero_test.cpp} (78%) copy libc/test/src/string/{memcpy_test.cpp => memset_test.cpp} (50%) create mode 100644 llvm/test/CodeGen/PowerPC/livevars-crash1.mir create mode 100644 llvm/test/CodeGen/PowerPC/livevars-crash2.mir