X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=test%2FLinker%2F2003-04-21-Linkage.ll;h=f6d4c4b03b7ff62b1d37a416fe774d17b146cfa9;hb=9d434dbff3eb0501efc3457acec2401afdffef2f;hp=96fb5c048fb998e9da7c083d8204ffc156d86ea4;hpb=e3e7c474f2d8b32fed4035d1b8e643a2b0ddc0aa;p=oota-llvm.git diff --git a/test/Linker/2003-04-21-Linkage.ll b/test/Linker/2003-04-21-Linkage.ll index 96fb5c048fb..f6d4c4b03b7 100644 --- a/test/Linker/2003-04-21-Linkage.ll +++ b/test/Linker/2003-04-21-Linkage.ll @@ -1,15 +1,14 @@ -; RUN: echo "%X = linkonce global int 5 implementation linkonce int %foo() { ret int 7 }" | as > %t.1.bc -; RUN: as < %s > %t.2.bc -; RUN: link %t.[12].bc -%X = external global int +; RUN: echo {@X = linkonce global i32 5 \ +; RUN: define linkonce i32 @foo() \{ ret i32 7 \} } | llvm-as > %t.1.bc +; RUN: llvm-as %s -o %t.2.bc +; RUN: llvm-link %t.1.bc %t.2.bc +@X = external global i32 -implementation +declare i32 @foo() -declare int %foo() - -void %bar() { - load int* %X - call int %foo() +define void @bar() { + load i32* @X + call i32 @foo() ret void }