mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-05 13:09:10 +00:00
7add5421a6
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@196503 91177308-0d34-0410-b5e6-96231b3b80d8
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
|
|
}
|