Stackmap shadows should consider call returns a branch target.
[oota-llvm.git] / test / CodeGen / Mips / indirectcall.ll
1 ; RUN: llc  < %s -march=mipsel -relocation-model=static | FileCheck %s 
2
3 define void @foo0(void (i32)* nocapture %f1) nounwind {
4 entry:
5 ; CHECK: jalr $25
6   tail call void %f1(i32 13) nounwind
7   ret void
8 }