You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
252 B
13 lines
252 B
4 months ago
|
; RUN: llc < %s -march=nvptx -mcpu=sm_20 | FileCheck %s
|
||
|
|
||
|
target triple = "nvptx-unknown-cuda"
|
||
|
|
||
|
declare void @bar(<4 x i32>)
|
||
|
|
||
|
; CHECK-LABEL: @foo
|
||
|
define void @foo(<4 x i32> %a) {
|
||
|
; CHECK: st.param.v4.b32
|
||
|
tail call void @bar(<4 x i32> %a)
|
||
|
ret void
|
||
|
}
|