1; RUN: llc < %s -march=nvptx -mcpu=sm_20 | FileCheck %s
2
3declare <4 x float> @bar()
4
5define void @foo(<4 x float>* %ptr) {
6; CHECK: ld.param.v4.f32
7  %val = tail call <4 x float> @bar()
8  store <4 x float> %val, <4 x float>* %ptr
9  ret void
10}
11