summaryrefslogtreecommitdiff
path: root/test/Integer/indirectcall2_bt.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/Integer/indirectcall2_bt.ll')
-rw-r--r--test/Integer/indirectcall2_bt.ll6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Integer/indirectcall2_bt.ll b/test/Integer/indirectcall2_bt.ll
index 1fd48a0d39..1652f1691c 100644
--- a/test/Integer/indirectcall2_bt.ll
+++ b/test/Integer/indirectcall2_bt.ll
@@ -4,18 +4,18 @@
implementation
-define i63 "test"(i63 %X)
+define i63 @"test"(i63 %X)
begin
ret i63 %X
end
-define i63 "fib"(i63 %n)
+define i63 @"fib"(i63 %n)
begin
%T = icmp ult i63 %n, 2 ; {i1}:0
br i1 %T, label %BaseCase, label %RecurseCase
RecurseCase:
- %result = call i63 %test(i63 %n)
+ %result = call i63 @test(i63 %n)
br label %BaseCase
BaseCase: