forked from OSchip/llvm-project
parent
352630141c
commit
5d7a0a3aee
|
@ -0,0 +1,22 @@
|
|||
; RUN: llvm-as %s | lli
|
||||
|
||||
; PR672
|
||||
|
||||
int %main(){
|
||||
%f = cast int (int, int*, int)* %check_tail to int*
|
||||
%res = tail call fastcc int %check_tail( int 10, int* %f,int 10)
|
||||
ret int %res
|
||||
}
|
||||
fastcc int %check_tail(int %x, int* %f, int %g) {
|
||||
%tmp1 = setgt int %x, 0
|
||||
br bool %tmp1, label %if-then, label %if-else
|
||||
|
||||
if-then:
|
||||
%fun_ptr = cast int* %f to int(int, int*, int)*
|
||||
%arg1 = add int %x, -1
|
||||
%res = tail call fastcc int %fun_ptr( int %arg1, int * %f, int %g)
|
||||
ret int %res
|
||||
|
||||
if-else:
|
||||
ret int %x
|
||||
}
|
Loading…
Reference in New Issue