s/NumFiles/NumStreams/
[oota-llvm.git] / test / Linker / 2003-08-28-TypeResolvesGlobal3.ll
index aa199cb0387f17bcdf7e2f8623f931ae6b704e9c..f77d9e6d3b968054930d1a094ed10a621d7865e6 100644 (file)
@@ -1,15 +1,15 @@
-; 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 "%M = type i32" | llvm-as > %t.out2.bc
+; RUN: llvm-link %t.out2.bc %t.out1.bc
 
-%S = type opaque
+%M = type opaque
 
 ; GLobal using the resolved function prototype
-global void(%S*)* %foo
+global void (%M*)* @foo                ; <void (%M*)**>:0 [#uses=0]
 
-void %foo(int* %V) {
-  ret void
+define void @foo.upgrd.1(i32* %V) {
+       ret void
 }
 
-declare void %foo(%S*)
+declare void @foo(%M*)