The ARM disassembler did not handle the alignment correctly for VLD*DUP* instructions
[oota-llvm.git] / test / Integer / indirectcall2_bt.ll
index 1fd48a0d394d6532676a14c0d509b170ffad9f86..5b7c68df22c2054f655f713c2e442d2bf816f837 100644 (file)
@@ -2,20 +2,19 @@
 ; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
 ; RUN: diff %t1.ll %t2.ll
 
-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: