this test isn't useful since we added @ notation for globals.
[oota-llvm.git] / test / Assembler / 2002-07-14-OpaqueType.llx
index dce13fe6b81a2e9ce0b52d0a8dd3d18d567106ff..662fb0f31c1d30e7c86eb244affc21264d4a7685 100644 (file)
@@ -1,12 +1,10 @@
 ; Test that opaque types are preserved correctly
-; RUN: llvm-upgrade < %s | llvm-as | llvm-dis | llvm-as | llvm-dis
+; RUN: llvm-as < %s | llvm-dis | llvm-as | llvm-dis
 ;
 
 %Ty = type opaque
 
-implementation
-
-%Ty* %func() {
+define %Ty* @func() {
        ret %Ty* null
 }