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 5aca72aecc
commit bcb301c4a2
1 changed files with 2 additions and 1 deletions

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
}