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-lts-allmodconfig in repository toolchain/ci/llvm-project.
from 7996b49053f Revert "[ARM] Improve codegen of volatile load/store of i64" adds 9db3e5d5156 [InstCombine] Fix infinite loop in min/max load/store bitca [...] adds d65ef4321e6 [InstCombine] Add test for -expensive-combines option; NFC adds d9b836dc6f7 [InstCombine] Support disabling expensive combines in opt adds fc12083cbc5 [InstCombine] Fix infinite min/max canonicalization loop (PR44541) adds 4ea0b397582 PowerPC release notes adds a124bebdd5f [ARM] Fix non-determenistic behaviour adds e2c0c70101a [cmake] Fix clang builds with BUILD_SHARED=ON and CLANG_LIN [...] adds 720870ee60a [analyzer] Fix a couple of bugs in HTML report generation. adds 3f4ba96a59a [BPF] disable ReduceLoadWidth during SelectionDag phase new 8b8a4834a4b [X86] Use MVT::i8 instead of MVT::i64 for shift amount in B [...] new 84cda4cceab [clang-tidy] Fix false positive for cppcoreguidelines-init- [...] new b73942dbc14 AMDGPU/EG,CM: Implement fsqrt using recip(rsqrt(x)) instead [...] new b8fead783fa [AArch64] Add option to enable/disable load-store renaming. new 793d643f6d6 [Clang] Remove unused #pragma clang __debug handle_crash new 64515b35844 [analyzer] Add 10.0.0 release notes. new 4759c6ef8b4 [Support] When using SEH, create a impl instance for CrashR [...] new 0e1c734fa5b Re-land "[Clang][Driver] Remove -M group options ..." and " [...]
The 8 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: .../cppcoreguidelines/InitVariablesCheck.cpp | 14 +- .../checkers/cppcoreguidelines-init-variables.cpp | 6 + clang/docs/ReleaseNotes.rst | 22 ++- clang/include/clang/Driver/CC1Options.td | 2 + clang/include/clang/Lex/PreprocessorOptions.h | 3 + clang/lib/Driver/Compilation.cpp | 13 +- clang/lib/Driver/ToolChains/Clang.cpp | 5 + clang/lib/Frontend/CompilerInvocation.cpp | 1 + clang/lib/Lex/Pragma.cpp | 33 +++-- clang/lib/StaticAnalyzer/Core/HTMLDiagnostics.cpp | 11 +- clang/test/Analysis/html_diagnostics/td-hotfix.c | 31 ++++ .../html_diagnostics/variable-popups-macro.c | 28 ++++ .../html_diagnostics/variable-popups-multiple.c | 29 ++++ .../html_diagnostics/variable-popups-simple.c | 23 +++ ...{crash-report.c => crash-report-with-asserts.c} | 35 +++-- clang/test/Driver/crash-report.c | 25 +++- clang/tools/clang-shlib/CMakeLists.txt | 17 ++- llvm/docs/ReleaseNotes.rst | 24 +++- llvm/include/llvm/Support/CrashRecoveryContext.h | 4 - llvm/lib/CodeGen/TypePromotion.cpp | 12 +- llvm/lib/Support/CrashRecoveryContext.cpp | 68 ++++----- .../Target/AArch64/AArch64LoadStoreOptimizer.cpp | 7 + llvm/lib/Target/AMDGPU/CaymanInstructions.td | 4 +- llvm/lib/Target/AMDGPU/EvergreenInstructions.td | 3 +- llvm/lib/Target/AMDGPU/R600Instructions.td | 7 +- llvm/lib/Target/BPF/BPFISelLowering.h | 13 ++ llvm/lib/Target/X86/X86ISelLowering.cpp | 2 +- .../InstCombine/InstCombineLoadStoreAlloca.cpp | 5 + .../Transforms/InstCombine/InstCombineSelect.cpp | 6 + .../InstCombine/InstructionCombining.cpp | 3 +- llvm/test/CodeGen/AArch64/arm64-abi-varargs.ll | 2 +- llvm/test/CodeGen/AArch64/arm64-abi_align.ll | 4 +- llvm/test/CodeGen/AArch64/arm64-variadic-aapcs.ll | 2 +- .../CodeGen/AArch64/machine-outliner-remarks.ll | 6 +- llvm/test/CodeGen/AArch64/machine-outliner.ll | 4 +- .../AArch64/stp-opt-with-renaming-debug.mir | 2 +- .../stp-opt-with-renaming-reserved-regs.mir | 8 +- .../test/CodeGen/AArch64/stp-opt-with-renaming.mir | 8 +- llvm/test/CodeGen/AMDGPU/fsqrt.ll | 38 +++-- llvm/test/CodeGen/BPF/CORE/no-narrow-load.ll | 156 +++++++++++++++++++++ llvm/test/CodeGen/X86/pr44812.ll | 24 ++++ .../Transforms/InstCombine/expensive-combines.ll | 28 ++++ llvm/test/Transforms/InstCombine/pr44541.ll | 25 ++++ llvm/test/Transforms/InstCombine/pr44835.ll | 29 ++++ 44 files changed, 673 insertions(+), 119 deletions(-) create mode 100644 clang/test/Analysis/html_diagnostics/td-hotfix.c create mode 100644 clang/test/Analysis/html_diagnostics/variable-popups-macro.c create mode 100644 clang/test/Analysis/html_diagnostics/variable-popups-multiple.c create mode 100644 clang/test/Analysis/html_diagnostics/variable-popups-simple.c copy clang/test/Driver/{crash-report.c => crash-report-with-asserts.c} (61%) create mode 100644 llvm/test/CodeGen/BPF/CORE/no-narrow-load.ll create mode 100644 llvm/test/CodeGen/X86/pr44812.ll create mode 100644 llvm/test/Transforms/InstCombine/expensive-combines.ll create mode 100644 llvm/test/Transforms/InstCombine/pr44541.ll create mode 100644 llvm/test/Transforms/InstCombine/pr44835.ll