X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=test%2FLinker%2F2003-08-23-RecursiveOpaqueTypeResolve.ll;h=d810dba6589f23358a22cff289242611a038b36f;hb=22bd64173981bf1251c4b3bfc684207340534ba3;hp=50aae13cce0b7159421b62e7f87a15b85c94f1ea;hpb=edca80b5e86363c6e4d5cfeedd6940d991355333;p=oota-llvm.git diff --git a/test/Linker/2003-08-23-RecursiveOpaqueTypeResolve.ll b/test/Linker/2003-08-23-RecursiveOpaqueTypeResolve.ll index 50aae13cce0..d810dba6589 100644 --- a/test/Linker/2003-08-23-RecursiveOpaqueTypeResolve.ll +++ b/test/Linker/2003-08-23-RecursiveOpaqueTypeResolve.ll @@ -1,8 +1,10 @@ ; It's a bad idea to go recursively traipsing through types without a safety ; net. -; RUN: llvm-upgrade < %s | llvm-as > %t.out1.bc -; RUN: echo "%S = type { %S*, int* }" | llvm-upgrade | llvm-as > %t.out2.bc +; RUN: llvm-as < %s > %t.out1.bc +; RUN: echo "%M = type { %M*, i32* }" | llvm-as > %t.out2.bc ; RUN: llvm-link %t.out1.bc %t.out2.bc -%S = type { %S*, opaque* } +%T1 = type opaque +%M = type { %M*, %T1* } +