Include some tests for the recently committed ELF section directive
[oota-llvm.git] / test / Integer / forwardreftest_bt.ll
index d6011b0a22953ecf649e5fb2656029b1cdbd8356..5d73eff2f5a9e7a5482926ab5cd6c7a3feee8b8e 100644 (file)
@@ -9,25 +9,24 @@
   type i55(i55(i55)*)
 
   %thisfuncty = type i55 (i55) *
-implementation
 
-declare void %F(%thisfuncty, %thisfuncty, %thisfuncty)
+declare void @F(%thisfuncty, %thisfuncty, %thisfuncty)
 
 ; This function always returns zero
-define i55 %zarro(i55 %Func)
+define i55 @zarro(i55 %Func)
 begin
 Startup:
     add i55 0, 10
     ret i55 0 
 end
 
-define i55 %test(i55) 
+define i55 @test(i55) 
 begin
-    call void %F(%thisfuncty %zarro, %thisfuncty %test, %thisfuncty %foozball)
+    call void @F(%thisfuncty @zarro, %thisfuncty @test, %thisfuncty @foozball)
     ret i55 0
 end
 
-define i55 %foozball(i55)
+define i55 @foozball(i55)
 begin
     ret i55 0
 end