For PR1319: Upgrade to new test harness
[oota-llvm.git] / test / Linker / 2003-08-20-OpaqueTypeResolve.ll
1 ; RUN: llvm-upgrade < %s | llvm-as > %t.out1.bc
2 ; RUN: echo {%S = type \{ int, int* \} } | llvm-upgrade | llvm-as > %t.out2.bc
3 ; RUN: llvm-link %t.out1.bc %t.out2.bc
4
5 %T = type opaque
6 %S = type { int, %T* }
7 ;%X = global { int, %T* } { int 5, %T* null }