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-next-allnoconfig in repository toolchain/ci/llvm-monorepo.
from aba633dd786 ReleaseNotes: X86 Target: bdver2 sched model was added (D52779) adds fcdb8590f50 [gn build] Add build files for clang/tools/{c-arcmt-test,c- [...] adds 06e20a057a1 [HWASAN] Instrument memorty intrinsics by default adds c9687299720 [clang-tidy] add IgnoreMacros option to readability-upperca [...] adds b865143a40d [analyzer] [NFC] Clean up the mess of constructing argument [...] adds 4bdfdf9afcf [X86] Add test cases for PR40142. NFC adds fa2588a7788 [X86] Use GetDemandedBits to simplify the operands of PMULD [...] adds bf4e9868875 [gn build] Make NOSORT line actually work adds 9181cfa61f7 [PowerPC] Fix the bug of ISD::ADDE to set its second return [...] adds b78f9a06fdd [NFC] Reuse variables instead of re-calling getParent new 62368bc223e [MIPS GlobalISel] Select G_SELECT
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: .../readability/UppercaseLiteralSuffixCheck.cpp | 6 +- .../readability/UppercaseLiteralSuffixCheck.h | 1 + clang-tools-extra/docs/ReleaseNotes.rst | 4 + .../readability-uppercase-literal-suffix.rst | 5 + ...lity-uppercase-literal-suffix-integer-macro.cpp | 4 +- ...eadability-uppercase-literal-suffix-integer.cpp | 4 + .../StaticAnalyzer/Core/RetainSummaryManager.h | 19 +-- .../StaticAnalyzer/Core/RetainSummaryManager.cpp | 143 ++++++++++------- llvm/lib/CodeGen/GlobalISel/LegalizerHelper.cpp | 19 ++- llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 9 ++ llvm/lib/Target/Mips/MipsInstructionSelector.cpp | 9 ++ llvm/lib/Target/Mips/MipsLegalizerInfo.cpp | 5 + llvm/lib/Target/Mips/MipsRegisterBankInfo.cpp | 7 + llvm/lib/Target/PowerPC/PPCISelLowering.cpp | 2 +- llvm/lib/Target/X86/X86ISelLowering.cpp | 9 ++ .../Instrumentation/HWAddressSanitizer.cpp | 2 +- llvm/lib/Transforms/Scalar/GuardWidening.cpp | 3 +- .../Mips/GlobalISel/instruction-select/select.mir | 72 +++++++++ .../CodeGen/Mips/GlobalISel/legalizer/select.mir | 172 +++++++++++++++++++++ .../test/CodeGen/Mips/GlobalISel/llvm-ir/select.ll | 83 ++++++++++ .../Mips/GlobalISel/regbankselect/select.mir | 70 +++++++++ llvm/test/CodeGen/PowerPC/adde_return_type.ll | 11 ++ llvm/test/CodeGen/X86/avx2-intrinsics-fast-isel.ll | 9 -- .../CodeGen/X86/avx512-intrinsics-fast-isel.ll | 9 -- llvm/test/CodeGen/X86/pmul.ll | 46 ++++++ llvm/test/CodeGen/X86/sse2-intrinsics-fast-isel.ll | 28 +--- .../test/CodeGen/X86/sse41-intrinsics-fast-isel.ll | 17 +- .../HWAddressSanitizer/mem-intrinsics.ll | 2 +- llvm/utils/gn/secondary/BUILD.gn | 6 +- llvm/utils/gn/secondary/clang/lib/Headers/BUILD.gn | 2 +- .../gn/secondary/clang/tools/c-arcmt-test/BUILD.gn | 15 ++ .../gn/secondary/clang/tools/c-index-test/BUILD.gn | 28 ++++ .../gn/secondary/clang/tools/libclang/BUILD.gn | 84 ++++++++++ 33 files changed, 759 insertions(+), 146 deletions(-) create mode 100644 llvm/test/CodeGen/Mips/GlobalISel/instruction-select/select.mir create mode 100644 llvm/test/CodeGen/Mips/GlobalISel/legalizer/select.mir create mode 100644 llvm/test/CodeGen/Mips/GlobalISel/llvm-ir/select.ll create mode 100644 llvm/test/CodeGen/Mips/GlobalISel/regbankselect/select.mir create mode 100644 llvm/test/CodeGen/PowerPC/adde_return_type.ll create mode 100644 llvm/utils/gn/secondary/clang/tools/c-arcmt-test/BUILD.gn create mode 100644 llvm/utils/gn/secondary/clang/tools/c-index-test/BUILD.gn create mode 100644 llvm/utils/gn/secondary/clang/tools/libclang/BUILD.gn