X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=test%2FLinker%2F2003-04-26-NullPtrLinkProblem.ll;h=5e8249b047577e9c304ddc6efd40e0be4aacf892;hb=57a38b856ee453772c6b2b98a1470b051565f41b;hp=4c3f572029689d6c142b17ed1cb4239ee42b3827;hpb=ac0ec635e643e59222a15781c72db5891a86a64e;p=oota-llvm.git diff --git a/test/Linker/2003-04-26-NullPtrLinkProblem.ll b/test/Linker/2003-04-26-NullPtrLinkProblem.ll index 4c3f5720296..5e8249b0475 100644 --- a/test/Linker/2003-04-26-NullPtrLinkProblem.ll +++ b/test/Linker/2003-04-26-NullPtrLinkProblem.ll @@ -1,19 +1,17 @@ ; This one fails because the LLVM runtime is allowing two null pointers of ; the same type to be created! -; RUN: echo "%T = type int" | as > Output/%s.2.bc -; RUN: as < %s > Output/%s.1.bc -; RUN: link Output/%s.[12].bc +; RUN: echo "%%T = type i32" | llvm-as > %t.2.bc +; RUN: llvm-as %s -o %t.1.bc +; RUN: llvm-link %t.1.bc %t.2.bc %T = type opaque -declare %T* %create() +declare %T* @create() -implementation - -void %test() { - %X = call %T* %create() - %v = seteq %T* %X, null +define void @test() { + %X = call %T* @create( ) ; <%T*> [#uses=1] + %v = icmp eq %T* %X, null ; [#uses=0] ret void }