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-aarch64-next-defconfig in repository toolchain/ci/llvm-project.
from 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." adds f7c9f77ef37 [Analyzer][StreamChecker] Added support for 'fread' and 'fwrite'. adds 44226c1fea7 [mlir] Mark witness related Shape dialect ops as NoSideEffect.
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 + .../lib/StaticAnalyzer/Checkers/StreamChecker.cpp | 156 ++++++++++++++++++++- clang/test/Analysis/stream-error.c | 79 +++++++++++ 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 ++++++--- mlir/include/mlir/Dialect/Shape/IR/ShapeOps.td | 4 +- 29 files changed, 935 insertions(+), 138 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%)