forked from OSchip/llvm-project
Make this testcase actually recursive. I accidentally committed the wrong copy last time.
llvm-svn: 30059
This commit is contained in:
parent
5aca72aecc
commit
bcb301c4a2
|
@ -5,7 +5,8 @@ implementation ; Functions:
|
|||
|
||||
internal int %foo(int* %x) {
|
||||
entry:
|
||||
%tmp.foo = load int* %x
|
||||
%tmp = load int* %x
|
||||
%tmp.foo = call int %foo(int *%x)
|
||||
ret int %tmp.foo
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue