X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=test%2FLinker%2F2003-04-26-NullPtrLinkProblem.ll;h=df12fb3a7a573cc9a035d2419cb5d3e291f1b3d1;hb=befc9c16fae1719cafe9f54ab2b67219db44dc11;hp=029bce264a592adb038342a19ee870db3483205e;hpb=edca80b5e86363c6e4d5cfeedd6940d991355333;p=oota-llvm.git diff --git a/test/Linker/2003-04-26-NullPtrLinkProblem.ll b/test/Linker/2003-04-26-NullPtrLinkProblem.ll index 029bce264a5..df12fb3a7a5 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} | llvm-upgrade | llvm-as > %t.2.bc -; RUN: llvm-upgrade < %s | llvm-as -f > %t.1.bc +; RUN: echo {%T = type i32} | llvm-as > %t.2.bc +; RUN: llvm-as %s -f -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 }