vector-call.ll 251 B

123456789101112
  1. ; RUN: llc < %s -march=nvptx -mcpu=sm_20 | FileCheck %s
  2. target triple = "nvptx-unknown-cuda"
  3. declare void @bar(<4 x i32>)
  4. ; CHECK-LABEL @foo
  5. define void @foo(<4 x i32> %a) {
  6. ; CHECK: st.param.v4.b32
  7. tail call void @bar(<4 x i32> %a)
  8. ret void
  9. }