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.
11 lines
243 B
11 lines
243 B
4 months ago
|
; RUN: llc < %s -march=nvptx -mcpu=sm_20 | FileCheck %s
|
||
|
|
||
|
declare <4 x float> @bar()
|
||
|
|
||
|
define void @foo(<4 x float>* %ptr) {
|
||
|
; CHECK: ld.param.v4.f32
|
||
|
%val = tail call <4 x float> @bar()
|
||
|
store <4 x float> %val, <4 x float>* %ptr
|
||
|
ret void
|
||
|
}
|