Rename metadata llvm.loop.vectorize.unroll to llvm.loop.vectorize.interleave.
[oota-llvm.git] / test / Assembler / 2002-05-02-InvalidForwardRef.ll
index 961ae84edfd5c55896045f79515dd656d5fab9c6..234545c2936fbc71ecc67c2726ff20215367948a 100644 (file)
@@ -1,11 +1,10 @@
+; RUN: llvm-as %s -o /dev/null
 ; It looks like the assembler is not forward resolving the function declaraion
 ; correctly.
 
-void "test"()
-begin
-       call void %foo()
-       ret void
-end
-
-declare void "foo"()
+define void @test() {
+        call void @foo( )
+        ret void
+}
 
+declare void @foo()