This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from f77e034b28f [AMDGPU] Regenerate i64 shift tests. new 655a52dced3 [NVPTX] Allow libcalls that are defined in the current module.
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: include/llvm/CodeGen/SelectionDAG.h | 7 ++ lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 26 ++++ lib/Target/NVPTX/CMakeLists.txt | 1 + lib/Target/NVPTX/NVPTX.h | 1 + lib/Target/NVPTX/NVPTXAsmPrinter.cpp | 5 + lib/Target/NVPTX/NVPTXISelLowering.cpp | 47 ++++++- lib/Target/NVPTX/NVPTXISelLowering.h | 1 + lib/Target/NVPTX/NVPTXInstrInfo.td | 21 +++- lib/Target/NVPTX/NVPTXProxyRegErasure.cpp | 122 +++++++++++++++++++ lib/Target/NVPTX/NVPTXTargetMachine.cpp | 8 ++ test/CodeGen/NVPTX/calls-with-phi.ll | 22 ++++ test/CodeGen/NVPTX/libcall-fulfilled.ll | 31 +++++ test/CodeGen/NVPTX/libcall-instruction.ll | 4 +- test/CodeGen/NVPTX/libcall-intrinsic.ll | 10 ++ test/CodeGen/NVPTX/proxy-reg-erasure-mir.ll | 25 ++++ test/CodeGen/NVPTX/proxy-reg-erasure-ptx.ll | 183 ++++++++++++++++++++++++++++ test/CodeGen/NVPTX/zero-cs.ll | 10 -- 17 files changed, 508 insertions(+), 16 deletions(-) create mode 100644 lib/Target/NVPTX/NVPTXProxyRegErasure.cpp create mode 100644 test/CodeGen/NVPTX/calls-with-phi.ll create mode 100644 test/CodeGen/NVPTX/libcall-fulfilled.ll create mode 100644 test/CodeGen/NVPTX/libcall-intrinsic.ll create mode 100644 test/CodeGen/NVPTX/proxy-reg-erasure-mir.ll create mode 100644 test/CodeGen/NVPTX/proxy-reg-erasure-ptx.ll delete mode 100644 test/CodeGen/NVPTX/zero-cs.ll