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-aarch64-lts-allyesconfig in repository toolchain/ci/llvm-project.
from 2520bef8653 [Clang FE, SystemZ] Recognize -mrecord-mcount CL option. adds 63e2aa5658b [libomptarget][nfc] Provide target_impl malloc/free adds 6be15788951 [SystemZ] Recognize mrecord-mcount in backend adds f8e2ab3cd34 Revert "[cmake] Add dependency on llvm-dwarfdump to llvm-locstats" adds 13d30bd54b8 [x86] add test for missing FMF propagation; NFC adds ec4f06a77de [RISCV] Don't crash on unsupported relocations adds bc28f17e4ff [SLP]Added test for gathering reused extracts from narrow v [...] adds 34dd49c86a4 [NFC][InstCombine] Add some more non-zero assumption varian [...] adds 67de896229c [lldb/Lua] Add Boilerplate for a Lua Script Interpreter adds 1edb3ea6457 [SLP]Fix test arguments, NFC.
No new revisions were added by this update.
Summary of changes: lldb/cmake/modules/LLDBConfig.cmake | 4 + lldb/include/lldb/Host/Config.h.cmake | 2 + lldb/include/lldb/lldb-enumerations.h | 1 + lldb/source/API/SystemInitializerFull.cpp | 8 + lldb/source/Interpreter/OptionArgParser.cpp | 2 + .../Plugins/ScriptInterpreter/CMakeLists.txt | 4 + .../Plugins/ScriptInterpreter/Lua/CMakeLists.txt | 7 + .../ScriptInterpreter/Lua/ScriptInterpreterLua.cpp | 71 +++++++ .../ScriptInterpreter/Lua/ScriptInterpreterLua.h | 47 +++++ .../RISCV/MCTargetDesc/RISCVELFObjectWriter.cpp | 13 +- llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp | 12 ++ llvm/lib/Target/SystemZ/SystemZISelDAGToDAG.cpp | 9 +- llvm/test/CodeGen/SystemZ/mrecord-mcount-01.ll | 32 +++ llvm/test/CodeGen/SystemZ/mrecord-mcount-02.ll | 10 + llvm/test/CodeGen/X86/fmf-reduction.ll | 27 +++ llvm/test/MC/RISCV/fixups-invalid.s | 7 + .../Transforms/InstSimplify/assume-non-zero.ll | 229 +++++++++++++++++++++ .../X86/reuse-extracts-in-wider-vect.ll | 67 ++++++ llvm/utils/llvm-locstats/CMakeLists.txt | 4 - .../libomptarget/deviceRTLs/amdgcn/CMakeLists.txt | 1 + .../deviceRTLs/amdgcn/src/target_impl.h | 4 + openmp/libomptarget/deviceRTLs/common/omptarget.h | 1 - .../libomptarget/deviceRTLs/common/src/support.cu | 4 +- .../deviceRTLs/nvptx/src/target_impl.h | 6 + 24 files changed, 560 insertions(+), 12 deletions(-) create mode 100644 lldb/source/Plugins/ScriptInterpreter/Lua/CMakeLists.txt create mode 100644 lldb/source/Plugins/ScriptInterpreter/Lua/ScriptInterpreterLua.cpp create mode 100644 lldb/source/Plugins/ScriptInterpreter/Lua/ScriptInterpreterLua.h create mode 100644 llvm/test/CodeGen/SystemZ/mrecord-mcount-01.ll create mode 100644 llvm/test/CodeGen/SystemZ/mrecord-mcount-02.ll create mode 100644 llvm/test/CodeGen/X86/fmf-reduction.ll create mode 100644 llvm/test/MC/RISCV/fixups-invalid.s create mode 100644 llvm/test/Transforms/InstSimplify/assume-non-zero.ll create mode 100644 llvm/test/Transforms/SLPVectorizer/X86/reuse-extracts-in-wider-vect.ll