Remove Neon intrinsics for VZIP, VUZP, and VTRN. We will represent these as
[oota-llvm.git] / test / Linker / 2003-08-28-TypeResolvesGlobal2.ll
index edf1865d77c342207039712d7505ed20b9fd6141..3f306b167b1df5d6bbc29a6fd338eaab5fc1a63d 100644 (file)
@@ -1,17 +1,18 @@
-; RUN: as < %s > Output/%s.out1.bc
-; RUN: echo "%S = type int" | as > Output/%s.out2.bc
-; RUN: link Output/%s.out[21].bc
+; RUN: llvm-as < %s > %t.out1.bc
+; RUN: echo "%S = type i32" | llvm-as > %t.out2.bc
+; RUN: llvm-link %t.out2.bc %t.out1.bc
 
 %S = type opaque
 
-void %foo(int* %V) {
-  ret void
+define void @foo(i32* %V) {
+       ret void
 }
 
-declare void %foo(%S*)
+declare void @foo.upgrd.1(%S*)
 
-void %other() {
-       call void %foo(%S* null)    ; Add a use of the unresolved proto
-       call void %foo(int* null)   ; Add a use of the resolved function
+define void @other() {
+       call void @foo.upgrd.1( %S* null )
+       call void @foo( i32* null )
        ret void
 }
+