view test/CodeGen/Mips/indirectcall.ll @ 120:1172e4bd9c6f

update 4.0.0
author mir3636
date Fri, 25 Nov 2016 19:14:25 +0900
parents 95c75e76d11b
children
line wrap: on
line source

; RUN: llc  < %s -march=mipsel -relocation-model=static -mips-tail-calls=1 | FileCheck %s 

define void @foo0(void (i32)* nocapture %f1) nounwind {
entry:
; CHECK: jr $25
  tail call void %f1(i32 13) nounwind
  ret void
}