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-stable-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) new 4ea0b397582 PowerPC release notes new a124bebdd5f [ARM] Fix non-determenistic behaviour new e2c0c70101a [cmake] Fix clang builds with BUILD_SHARED=ON and CLANG_LIN [...] new 720870ee60a [analyzer] Fix a couple of bugs in HTML report generation. new 3f4ba96a59a [BPF] disable ReduceLoadWidth during SelectionDag phase
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: 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 +++ clang/tools/clang-shlib/CMakeLists.txt | 17 ++- llvm/docs/ReleaseNotes.rst | 24 +++- llvm/lib/CodeGen/TypePromotion.cpp | 12 +- llvm/lib/Target/BPF/BPFISelLowering.h | 13 ++ .../InstCombine/InstCombineLoadStoreAlloca.cpp | 5 + .../Transforms/InstCombine/InstCombineSelect.cpp | 6 + .../InstCombine/InstructionCombining.cpp | 3 +- llvm/test/CodeGen/BPF/CORE/no-narrow-load.ll | 156 +++++++++++++++++++++ .../Transforms/InstCombine/expensive-combines.ll | 28 ++++ llvm/test/Transforms/InstCombine/pr44541.ll | 25 ++++ llvm/test/Transforms/InstCombine/pr44835.ll | 29 ++++ 16 files changed, 433 insertions(+), 7 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 create mode 100644 llvm/test/CodeGen/BPF/CORE/no-narrow-load.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