448c58d56205233cbf233b6b703d369beadeb4a3
[oota-llvm.git] / test / Transforms / InstCombine / IntPtrCast.ll
1 ; RUN: opt < %s -instcombine -S | notcast
2 target datalayout = "e-p:32:32"
3
4 define 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
8 }
9