blob: 968d1d4a5f51a7eaa3f56dd6b32f2d6548366264 [file] [log] [blame]
Justin Holewinskie5a11732014-07-17 16:58:56 +00001; RUN: llc < %s -march=nvptx -mcpu=sm_20 | FileCheck %s
2
3target triple = "nvptx-unknown-cuda"
4
5declare void @bar(<4 x i32>)
6
Jonathan Roelofs49e46ce2015-08-10 19:01:27 +00007; CHECK-LABEL: @foo
Justin Holewinskie5a11732014-07-17 16:58:56 +00008define void @foo(<4 x i32> %a) {
9; CHECK: st.param.v4.b32
10 tail call void @bar(<4 x i32> %a)
11 ret void
12}