mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
925169cb4e
llvm-svn: 196503
11 lines
243 B
LLVM
11 lines
243 B
LLVM
; 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
|
|
}
|