mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-09 13:33:17 +00:00
even when -tailcallopt is not specified and it does not require changing ABI. First case is the most trivial one. Perform tail call optimization when both the caller and callee do not return values and when the callee does not take any input arguments. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94664 91177308-0d34-0410-b5e6-96231b3b80d8
38 lines
893 B
LLVM
38 lines
893 B
LLVM
; RUN: llc < %s -march=x86 -tailcallopt | grep TAILCALL | count 5
|
|
|
|
declare fastcc i32 @tailcallee(i32 %a1, i32 %a2, i32 %a3, i32 %a4)
|
|
|
|
define fastcc i32 @tailcaller(i32 %in1, i32 %in2) nounwind {
|
|
entry:
|
|
%tmp11 = tail call fastcc i32 @tailcallee(i32 %in1, i32 %in2, i32 %in1, i32 %in2)
|
|
ret i32 %tmp11
|
|
}
|
|
|
|
declare fastcc i8* @alias_callee()
|
|
|
|
define fastcc noalias i8* @noalias_caller() nounwind {
|
|
%p = tail call fastcc i8* @alias_callee()
|
|
ret i8* %p
|
|
}
|
|
|
|
declare fastcc noalias i8* @noalias_callee()
|
|
|
|
define fastcc i8* @alias_caller() nounwind {
|
|
%p = tail call fastcc noalias i8* @noalias_callee()
|
|
ret i8* %p
|
|
}
|
|
|
|
declare fastcc i32 @i32_callee()
|
|
|
|
define fastcc i32 @ret_undef() nounwind {
|
|
%p = tail call fastcc i32 @i32_callee()
|
|
ret i32 undef
|
|
}
|
|
|
|
declare fastcc void @does_not_return()
|
|
|
|
define fastcc i32 @noret() nounwind {
|
|
tail call fastcc void @does_not_return()
|
|
unreachable
|
|
}
|