brintos

brintos / llvm-project-archived public Read only

0
0
Text · 357 B · 1c71b35 Raw
12 lines · plain
1; RUN: llc -verify-machineinstrs < %s -mtriple=ppc32-- -tailcallopt | grep TC_RETURN2define fastcc i32 @tailcallee(i32 %a1, i32 %a2, i32 %a3, i32 %a4) {3entry:4	ret i32 %a35}6 7define fastcc i32 @tailcaller(i32 %in1, i32 %in2) {8entry:9	%tmp11 = tail call fastcc i32 @tailcallee( i32 %in1, i32 %in2, i32 %in1, i32 %in2 )		; <i32> [#uses=1]10	ret i32 %tmp1111}12