[FastISel][AArch64] Optimize compare-and-branch for i1 to use 'tbz'.
[oota-llvm.git] / test / Linker / 2003-08-28-TypeResolvesGlobal2.ll
index a0526d4612c3b257eebe4d9b576ed801683480fc..601b917210d583e9e6e7fe08131d44c8ed8bf04b 100644 (file)
@@ -1,17 +1,18 @@
-; RUN: llvm-as < %s > Output/%s.out1.bc
-; RUN: echo "%S = type int" | llvm-as > Output/%s.out2.bc
-; RUN: llvm-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
 
-void %foo(int* %V) {
-  ret void
+define void @foo(i32* %V) {
+       ret void
 }
 
-declare void %foo(%S*)
+declare void @foo.upgrd.1(%M*)
 
-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( %M* null )
+       call void @foo( i32* null )
        ret void
 }
+