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-allnoconfig in repository toolchain/ci/llvm-monorepo.
from 62368bc223e [MIPS GlobalISel] Select G_SELECT adds fc692923648 [NFC] Use utility function for guards detection adds c5a4f2708b3 [AMDGPU] Regenerate i64 shift tests. adds 91c8df1257b Pass a concrete triple for two OpenMP tests that depend on TLS adds b2fe5df755e Ignore ConstantExpr in IgnoreParens adds e1e1965a52a [NVPTX] Allow libcalls that are defined in the current module. adds 5fa59576a81 Use error() instead of fatal() to report an invalid address range. adds c7b095054a5 [MS] Mangle return adjusting thunks with the public access [...] adds 22f192ee127 [clang-cl] Treat inputs as C++ with /E, like MSVC
No new revisions were added by this update.
Summary of changes: clang/lib/AST/Expr.cpp | 8 +- clang/lib/AST/MicrosoftMangle.cpp | 18 +- clang/lib/Driver/Driver.cpp | 5 +- clang/test/CodeGenCXX/mangle-ms-templates.cpp | 2 + .../test/CodeGenCXX/mangle-ms-thunks-covariant.cpp | 29 ++++ clang/test/Driver/cl-idl.cpp | 18 ++ clang/test/OpenMP/declare_reduction_codegen.cpp | 12 +- clang/test/OpenMP/parallel_copyin_codegen.cpp | 40 ++--- lld/ELF/SyntheticSections.cpp | 22 +-- lld/test/ELF/gdb-index-invalid-ranges.s | 4 +- llvm/include/llvm/CodeGen/SelectionDAG.h | 7 + llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 26 +++ llvm/lib/Target/NVPTX/CMakeLists.txt | 1 + llvm/lib/Target/NVPTX/NVPTX.h | 1 + llvm/lib/Target/NVPTX/NVPTXAsmPrinter.cpp | 5 + llvm/lib/Target/NVPTX/NVPTXISelLowering.cpp | 47 +++++- llvm/lib/Target/NVPTX/NVPTXISelLowering.h | 1 + llvm/lib/Target/NVPTX/NVPTXInstrInfo.td | 21 ++- llvm/lib/Target/NVPTX/NVPTXProxyRegErasure.cpp | 122 ++++++++++++++ llvm/lib/Target/NVPTX/NVPTXTargetMachine.cpp | 8 + llvm/lib/Transforms/Scalar/LoopPredication.cpp | 6 +- llvm/test/CodeGen/AMDGPU/lshl64-to-32.ll | 105 +++++++++--- llvm/test/CodeGen/NVPTX/calls-with-phi.ll | 22 +++ llvm/test/CodeGen/NVPTX/libcall-fulfilled.ll | 31 ++++ llvm/test/CodeGen/NVPTX/libcall-instruction.ll | 4 +- llvm/test/CodeGen/NVPTX/libcall-intrinsic.ll | 10 ++ llvm/test/CodeGen/NVPTX/proxy-reg-erasure-mir.ll | 25 +++ llvm/test/CodeGen/NVPTX/proxy-reg-erasure-ptx.ll | 183 +++++++++++++++++++++ llvm/test/CodeGen/NVPTX/zero-cs.ll | 10 -- 29 files changed, 701 insertions(+), 92 deletions(-) create mode 100644 clang/test/CodeGenCXX/mangle-ms-thunks-covariant.cpp create mode 100644 clang/test/Driver/cl-idl.cpp create mode 100644 llvm/lib/Target/NVPTX/NVPTXProxyRegErasure.cpp create mode 100644 llvm/test/CodeGen/NVPTX/calls-with-phi.ll create mode 100644 llvm/test/CodeGen/NVPTX/libcall-fulfilled.ll create mode 100644 llvm/test/CodeGen/NVPTX/libcall-intrinsic.ll create mode 100644 llvm/test/CodeGen/NVPTX/proxy-reg-erasure-mir.ll create mode 100644 llvm/test/CodeGen/NVPTX/proxy-reg-erasure-ptx.ll delete mode 100644 llvm/test/CodeGen/NVPTX/zero-cs.ll