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-arm-mainline-allnoconfig 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 adds 8b8a4834a4b [X86] Use MVT::i8 instead of MVT::i64 for shift amount in B [...] adds 84cda4cceab [clang-tidy] Fix false positive for cppcoreguidelines-init- [...] adds b73942dbc14 AMDGPU/EG,CM: Implement fsqrt using recip(rsqrt(x)) instead [...] adds b8fead783fa [AArch64] Add option to enable/disable load-store renaming. adds 793d643f6d6 [Clang] Remove unused #pragma clang __debug handle_crash adds 64515b35844 [analyzer] Add 10.0.0 release notes. adds 4759c6ef8b4 [Support] When using SEH, create a impl instance for CrashR [...] adds 0e1c734fa5b Re-land "[Clang][Driver] Remove -M group options ..." and " [...] adds f23caecc090 ReleaseNotes / external projects: Zig adds 699e2a6c555 Prefer __vector over vector keyword for altivec adds 4e6ec0fff65 IR Linking: Support merging Warning+Max module metadata flags adds dbe9c3a82dd [Support] Don't modify the current EH context during stack [...] new aeba7ba9f3d Add SystemZ release notes
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: .../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/Lexer.cpp | 4 +- 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/LangRef.rst | 4 +- llvm/docs/ReleaseNotes.rst | 49 ++++++- llvm/include/llvm/Support/CrashRecoveryContext.h | 4 - llvm/lib/CodeGen/TypePromotion.cpp | 12 +- llvm/lib/Linker/IRMover.cpp | 70 ++++++--- llvm/lib/Support/CrashRecoveryContext.cpp | 68 ++++----- llvm/lib/Support/Windows/Signals.inc | 8 +- .../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 ++++ llvm/test/Linker/Inputs/module-max-warn.ll | 3 + llvm/test/Linker/module-max-warn.ll | 12 ++ .../Transforms/InstCombine/expensive-combines.ll | 28 ++++ llvm/test/Transforms/InstCombine/pr44541.ll | 25 ++++ llvm/test/Transforms/InstCombine/pr44835.ll | 29 ++++ 50 files changed, 771 insertions(+), 147 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/Linker/Inputs/module-max-warn.ll create mode 100644 llvm/test/Linker/module-max-warn.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