2
0

ldparam-v4.ll 243 B

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