From: Chris Lattner Date: Fri, 6 May 2005 06:18:33 +0000 (+0000) Subject: test that tail call survives bytecodification X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=d100d4c3e9e5ced183408dde6d2eb576f30a92a0;p=oota-llvm.git test that tail call survives bytecodification git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21728 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Feature/calltest.ll b/test/Feature/calltest.ll index 8adbe493718..861d7632d41 100644 --- a/test/Feature/calltest.ll +++ b/test/Feature/calltest.ll @@ -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