test that tail call survives bytecodification

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21728 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2005-05-06 06:18:33 +00:00
parent 38287bdfde
commit d100d4c3e9

View File

@ -9,11 +9,11 @@ declare int "test"() ; Differ only by vararg
implementation
void "invoke"(%FunTy *%x)
begin
void "invoke"(%FunTy *%x) {
%foo = call %FunTy* %x(int 123)
%foo2 = tail call %FunTy* %x(int 123)
ret void
end
}
int "main"(int %argc) ; TODO: , sbyte **argv, sbyte **envp)
begin