X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=test%2FLinker%2F2003-01-30-LinkerTypeRename.ll;h=288daf1cba1c3b15adf68a17d62c6e9ba4bc7965;hb=15c928640d3ff01fd064c562f708877f7af0847f;hp=b0bd7640eb3590eb374edd3841b9329866c4b9ef;hpb=e3e7c474f2d8b32fed4035d1b8e643a2b0ddc0aa;p=oota-llvm.git diff --git a/test/Linker/2003-01-30-LinkerTypeRename.ll b/test/Linker/2003-01-30-LinkerTypeRename.ll index b0bd7640eb3..288daf1cba1 100644 --- a/test/Linker/2003-01-30-LinkerTypeRename.ll +++ b/test/Linker/2003-01-30-LinkerTypeRename.ll @@ -1,9 +1,9 @@ ; This fails because the linker renames the non-opaque type not the opaque ; one... -; RUN: echo "%Ty = type opaque" | as > %t.1.bc -; RUN: as < %s > %t.2.bc -; RUN: link %t.[12].bc | dis | grep '%Ty ' | grep -v opaque +; RUN: echo {%Ty = type opaque @GV = external global %Ty*} | llvm-as > %t.1.bc +; RUN: llvm-as < %s > %t.2.bc +; RUN: llvm-link %t.1.bc %t.2.bc | llvm-dis | grep {%Ty } | not grep opaque -%Ty = type int +%Ty = type i32