Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / Linker / 2003-08-28-TypeResolvesGlobal2.ll
blobaf7d7c723bcb74385cd97606bfff2f66b9cae462
1 ; RUN: llvm-as < %s > %t.out1.bc
2 ; RUN: echo "%M = type i32" | llvm-as > %t.out2.bc
3 ; RUN: llvm-link %t.out2.bc %t.out1.bc
5 %M = type opaque
7 define void @foo(ptr %V) {
8         ret void
11 declare void @foo.upgrd.1(ptr)
13 define void @other() {
14         call void @foo.upgrd.1( ptr null )
15         call void @foo( ptr null )
16         ret void