
Originally landed in #126800 This version fixes a typo in NVPTXAsmPrinter::emitFunctionParamList where .surfref was erroneously replaced with .samplerref.
18 lines
612 B
LLVM
18 lines
612 B
LLVM
; 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}
|