xref: /llvm-project/llvm/test/CodeGen/Mips/indirectcall.ll (revision 8663926a544602932d299dda435ed1ef70a05f48)
1; RUN: llc  < %s -mtriple=mipsel -relocation-model=static -mips-tail-calls=1 | FileCheck %s
2
3define void @foo0(ptr nocapture %f1) nounwind {
4entry:
5; CHECK: jr $25
6  tail call void %f1(i32 13) nounwind
7  ret void
8}
9