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-lts-defconfig in repository toolchain/ci/llvm-monorepo.
from 5458ec63b274 [ORC] Add some more basic sanity tests for the LLJIT. adds 732e489ae7e4 [AST, analyzer] Transform rvalue cast outputs to lvalues ( [...] adds b27d162fccc1 [WebAssembly] Change tabs to spaces in basic-assembly.s adds 762f2041e2d9 [X86] Only extract constant pool shuffle mask data with ze [...] adds f33ee5c1d670 [X86][AVX] Enable lowerVectorShuffleAsLanePermuteAndPermut [...] adds ffc35c5c372c Schedule Hot Cold Splitting pass after most optimization passes adds 5367fb8181d7 [analyzer][NFC] Fix inconsistencies in AnalyzerOptions adds 638587986fe1 [clang-tidy] add IgnoreMacros option to readability-redund [...] new 47cad8c42960 [DAGCombiner] reduce insert+bitcast+extract vector ops to [...] new 62cc222f6b7c foo new 1195d0a357b9 [X86] Remove SDIVREM8_SEXT_HREG/UDIVREM8_ZEXT_HREG and the [...] new 4b0408f29217 Revert r344873 "foo" new 3c5b7db80aca [Sanitizer] openbsd does not have sysctlbyname call
The 5 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: .../readability/RedundantSmartptrGetCheck.cpp | 8 + .../readability/RedundantSmartptrGetCheck.h | 7 +- clang-tools-extra/docs/ReleaseNotes.rst | 4 + .../checks/readability-redundant-smartptr-get.rst | 5 + .../readability-redundant-smartptr-get-macros.cpp | 24 ++ .../readability-redundant-smartptr-get.cpp | 5 + .../clang/StaticAnalyzer/Core/AnalyzerOptions.h | 28 +- clang/lib/Sema/SemaStmtAsm.cpp | 69 ++++- clang/lib/StaticAnalyzer/Core/AnalyzerOptions.cpp | 97 ++++--- clang/lib/StaticAnalyzer/Core/CoreEngine.cpp | 2 - clang/test/Analysis/asm.cpp | 12 + clang/test/Analysis/cfg.cpp | 22 +- .../lib/sanitizer_common/sanitizer_linux.cc | 7 +- .../lib/sanitizer_common/sanitizer_openbsd.cc | 7 + llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 33 ++- llvm/lib/Passes/PassBuilder.cpp | 6 +- llvm/lib/Target/X86/X86ISelDAGToDAG.cpp | 72 +++-- llvm/lib/Target/X86/X86ISelLowering.cpp | 67 +---- llvm/lib/Target/X86/X86ISelLowering.h | 4 - llvm/lib/Target/X86/X86MCInstLower.cpp | 2 +- llvm/lib/Transforms/IPO/PassManagerBuilder.cpp | 6 +- llvm/test/CodeGen/AArch64/extract-insert.ll | 38 +-- .../CodeGen/X86/bitcast-int-to-vector-bool-sext.ll | 83 ++---- .../CodeGen/X86/bitcast-int-to-vector-bool-zext.ll | 104 ++------ .../test/CodeGen/X86/bitcast-int-to-vector-bool.ll | 8 +- llvm/test/CodeGen/X86/extract-insert.ll | 9 +- llvm/test/CodeGen/X86/mmx-coalescing.ll | 9 +- llvm/test/CodeGen/X86/vector-shuffle-256-v16.ll | 10 +- llvm/test/CodeGen/X86/vector-shuffle-256-v32.ll | 18 +- llvm/test/MC/WebAssembly/basic-assembly.s | 4 +- llvm/test/Other/opt-hot-cold-split.ll | 292 +++++++++++++++++++++ 31 files changed, 699 insertions(+), 363 deletions(-) create mode 100644 clang-tools-extra/test/clang-tidy/readability-redundant-smartpt [...] create mode 100644 clang/test/Analysis/asm.cpp create mode 100644 llvm/test/Other/opt-hot-cold-split.ll