vector-return.ll 500 B

1234567891011121314
  1. ; RUN: llc < %s -march=nvptx64 -mcpu=sm_35 | FileCheck %s
  2. declare <2 x float> @bar(<2 x float> %input)
  3. define void @foo(<2 x float> %input, <2 x float>* %output) {
  4. ; CHECK-LABEL: @foo
  5. entry:
  6. %call = tail call <2 x float> @bar(<2 x float> %input)
  7. ; CHECK: .param .align 8 .b8 retval0[8];
  8. ; CHECK: ld.param.v2.f32 {[[ELEM1:%f[0-9]+]], [[ELEM2:%f[0-9]+]]}, [retval0+0];
  9. store <2 x float> %call, <2 x float>* %output, align 8
  10. ; CHECK: st.v2.f32 [{{%rd[0-9]+}}], {[[ELEM1]], [[ELEM2]]}
  11. ret void
  12. }