Allow x86 mov instructions to/from memory with absolute address to be encoded and...
[oota-llvm.git] / test / Assembler / 2002-05-02-InvalidForwardRef.ll
index 85c7368a61b612137dd19f9a2750f7c3640c8392..234545c2936fbc71ecc67c2726ff20215367948a 100644 (file)
@@ -1,13 +1,10 @@
-; RUN: llvm-upgrade < %s | llvm-as -o /dev/null -f
-
+; 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()