1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

Make this testcase actually recursive. I accidentally committed the wrong copy last time.

llvm-svn: 30059
This commit is contained in:
Owen Anderson 2006-09-02 22:46:58 +00:00
parent 518f055373
commit 4bbb544645

View File

@ -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
}