blob: e24d199f8c45ace2bd98558ed02cc018a461083f [file] [log] [blame]
Tanya Lattneraa6f5c92008-03-09 08:16:40 +00001; RUN: llvm-as < %s | opt -instcombine | llvm-dis | notcast
2target datalayout = "e-p:32:32"
Chris Lattner4269e402004-07-20 05:20:39 +00003
Tanya Lattneraa6f5c92008-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
Chris Lattner4269e402004-07-20 05:20:39 +00008}
Tanya Lattneraa6f5c92008-03-09 08:16:40 +00009