This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 790ea784d5b [ARM] Replace development diagnostics with normal DEBUG macro new 0c65800586e [docs] Code example fix new 7525c087824 AMDGPU: Add llvm.amdgcn.wqm.vote intrinsic new 4fda278e9b9 AMDGPU: Add new intrinsic llvm.amdgcn.kill(i1)
The 3 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: docs/ProgrammersManual.rst | 2 +- include/llvm/IR/IntrinsicsAMDGPU.td | 9 + lib/Target/AMDGPU/AMDGPUInstructions.td | 1 - lib/Target/AMDGPU/SIISelLowering.cpp | 7 +- lib/Target/AMDGPU/SIInsertSkips.cpp | 113 ++++++++-- lib/Target/AMDGPU/SIInstrInfo.cpp | 21 ++ lib/Target/AMDGPU/SIInstrInfo.h | 3 + lib/Target/AMDGPU/SIInstrInfo.td | 4 + lib/Target/AMDGPU/SIInstructions.td | 50 ++++- lib/Target/AMDGPU/SILowerControlFlow.cpp | 9 +- lib/Target/AMDGPU/SOPInstructions.td | 4 +- lib/Transforms/InstCombine/InstCombineCalls.cpp | 15 ++ test/CodeGen/AMDGPU/insert-skips-kill-uncond.mir | 2 +- test/CodeGen/AMDGPU/llvm.amdgcn.kill.ll | 241 +++++++++++++++++++++ test/CodeGen/AMDGPU/llvm.amdgcn.wqm.vote.ll | 52 +++++ .../InstCombine/AMDGPU/amdgcn-intrinsics.ll | 48 ++++ 16 files changed, 542 insertions(+), 39 deletions(-) create mode 100644 test/CodeGen/AMDGPU/llvm.amdgcn.kill.ll create mode 100644 test/CodeGen/AMDGPU/llvm.amdgcn.wqm.vote.ll