Files
clang-p2996/llvm/test/CodeGen/NVPTX/surf-write.ll
Mikhail Goncharov 17b3dd03a0 [NVPTX][test] fix CodeGen/NVPTX/surf-write.ll
ptxas needs a proper triplet

for 133352feb3
2024-12-17 15:45:06 +01:00

18 lines
603 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 void @foo(i64 %img, i32 %val, i32 %idx) {
; 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, !2}
!1 = !{ptr @foo, !"kernel", i32 1}
!2 = !{ptr @foo, !"wroimage", i32 0}