comparison test/CodeGen/PowerPC/tailcall1-64.ll @ 0:95c75e76d11b LLVM3.4

LLVM 3.4
author Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
date Thu, 12 Dec 2013 13:56:28 +0900
parents
children 1172e4bd9c6f
comparison
equal deleted inserted replaced
-1:000000000000 0:95c75e76d11b
1 ; RUN: llc < %s -march=ppc64 -tailcallopt | grep TC_RETURNd8
2 define fastcc i32 @tailcallee(i32 %a1, i32 %a2, i32 %a3, i32 %a4) {
3 entry:
4 ret i32 %a3
5 }
6
7 define fastcc i32 @tailcaller(i32 %in1, i32 %in2) {
8 entry:
9 %tmp11 = tail call fastcc i32 @tailcallee( i32 %in1, i32 %in2, i32 %in1, i32 %in2 ) ; <i32> [#uses=1]
10 ret i32 %tmp11
11 }