summaryrefslogtreecommitdiff
path: root/llvm/test/CodeGen/NVPTX/surf-write.ll
blob: a0c8508f70f900534377fcddbc2b434344093633 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
; RUN: llc < %s -mcpu=sm_20 -verify-machineinstrs | FileCheck %s
; RUN: %if ptxas %{ llc < %s -mcpu=sm_20 -mtriple=nvptx64-nvcl -verify-machineinstrs | %ptxas-verify %}

target triple = "nvptx-unknown-nvcl"

declare void @llvm.nvvm.sust.b.1d.i32.trap(i64, i32, i32)

; CHECK: .entry foo
define ptx_kernel void @foo(i64 %img, i32 %val, i32 %idx) {
; CHECK: .param .surfref foo_param_0
; CHECK: sust.b.1d.b32.trap [foo_param_0, {%r{{[0-9]+}}}], {%r{{[0-9]+}}}
  tail call void @llvm.nvvm.sust.b.1d.i32.trap(i64 %img, i32 %idx, i32 %val)
  ret void
}

!nvvm.annotations = !{!1}
!1 = !{ptr @foo, !"wroimage", i32 0}