blob: e24d199f8c45ace2bd98558ed02cc018a461083f [file] [log] [blame]
Tanya Lattner15b014b2008-03-09 08:16:40 +00001; RUN: llvm-as < %s | opt -instcombine | llvm-dis | notcast
2target datalayout = "e-p:32:32"
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003
Tanya Lattner15b014b2008-03-09 08:16:40 +00004define i32* @test(i32* %P) {
5 %V = ptrtoint i32* %P to i32 ; <i32> [#uses=1]
6 %P2 = inttoptr i32 %V to i32* ; <i32*> [#uses=1]
7 ret i32* %P2
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008}
Tanya Lattner15b014b2008-03-09 08:16:40 +00009