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-stable-defconfig in repository toolchain/ci/llvm-project.
from 56eb15a1c71 [Sema] Fix pointer-to-int-cast diagnostic for _Bool adds 81726894d3c [ORC] Add errors for missing and extraneous symbol definitions. adds 1df947ab403 [ORC] Update LLJIT to automatically run specially named ini [...] adds e7a184fc7c0 [X86] Use movlps for i64 atomic stores on 32-targets with sse1. adds bdb1729c834 [X86] Teach EltsFromConsecutiveLoads that it's ok to form a [...] adds 84cd968f75b [X86] Add AddToWorklist(N) after calls to SimplifyDemandedB [...] adds 57923617181 [X86] Add sse2 command lines to sse-intrinsics-fast-isel.ll. adds 21316f6f928 [NFC] Test commit access. Drop trivial braces. adds 98ac6e76960 [NFC] fix test nan value adds 7d3f8b1e2dc [clangd] Debounce rebuilds responsively to rebuild times. adds a2ce807eb72 [clangd] Reapply b60896fad926 Fall back to selecting token- [...] adds b4b9706d5da Revert "[clangd] Reapply b60896fad926 Fall back to selectin [...] adds af69d5e10eb [DSE] Track overlapping stores. adds a253a2a793c [SDAG] fold fsub -0.0, undef to undef rather than NaN new 31059ba5eb1 [X86] Regenerate some tests to show FMA4 comments. NFC
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: clang-tools-extra/clangd/ClangdServer.h | 7 +- llvm/include/llvm/ExecutionEngine/Orc/Core.h | 38 ++++++ llvm/include/llvm/ExecutionEngine/Orc/OrcError.h | 4 +- llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 7 +- .../ExecutionEngine/Orc/CompileOnDemandLayer.cpp | 36 ++++- llvm/lib/ExecutionEngine/Orc/Core.cpp | 20 +++ llvm/lib/ExecutionEngine/Orc/LLJIT.cpp | 27 +++- .../lib/ExecutionEngine/Orc/ObjectLinkingLayer.cpp | 30 +++++ llvm/lib/ExecutionEngine/OrcError/OrcError.cpp | 4 + llvm/lib/Target/X86/X86ISelLowering.cpp | 61 +++++++-- .../lib/Transforms/Scalar/DeadStoreElimination.cpp | 16 ++- llvm/test/CodeGen/X86/atomic-fp.ll | 145 +++++++-------------- llvm/test/CodeGen/X86/atomic-non-integer.ll | 51 ++------ .../CodeGen/X86/merge-consecutive-loads-128.ll | 29 ++--- llvm/test/CodeGen/X86/recip-fastmath.ll | 68 +++++----- llvm/test/CodeGen/X86/recip-fastmath2.ll | 80 ++++++------ llvm/test/CodeGen/X86/sse-intrinsics-fast-isel.ll | 143 +++++++++++++------- llvm/test/CodeGen/X86/vec_fneg.ll | 2 - .../OrcLazy/static-initializers-in-objectfiles.ll | 28 ++++ .../MSSA/OverwriteStoreBegin.ll | 1 - .../DeadStoreElimination/MSSA/OverwriteStoreEnd.ll | 1 - .../MSSA/memset-missing-debugloc.ll | 1 - .../DeadStoreElimination/MSSA/multiblock-loops.ll | 1 - .../MSSA/multiblock-memintrinsics.ll | 3 +- llvm/test/Transforms/InstCombine/fneg.ll | 16 +-- llvm/tools/lli/lli.cpp | 98 ++++++++++---- mlir/tools/mlir-vulkan-runner/VulkanRuntime.cpp | 3 +- 27 files changed, 574 insertions(+), 346 deletions(-) create mode 100644 llvm/test/ExecutionEngine/OrcLazy/static-initializers-in-object [...]