aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/Feature/calltest.ll6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Feature/calltest.ll b/test/Feature/calltest.ll
index 8adbe49371..861d7632d4 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