repo.or.cz
/
llvm-core.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[ARM] Better OR's for MVE compares
[llvm-core.git]
/
test
/
Transforms
/
InstCombine
/
IntPtrCast.ll
blob
4ecbccd86a48df3f0e17b3a7f681f3cee039ac0e
1
; RUN: opt < %s -instcombine -S | FileCheck %s
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
; CHECK: ret i32* %P
9
}
10