Sign in
swiftshader
/
SwiftShader
/
f9350d76a9830658aed2bdb3aa11532a40ab1928
/
.
/
third_party
/
LLVM
/
test
/
Transforms
/
ConstProp
/
float-to-ptr-cast.ll
blob: f60af451642d40d38fb9c0f291a84bd07bfed773 [
file
] [
log
] [
blame
]
; RUN: opt < %s -constprop -S | FileCheck %s
define
i32
*
@test1
()
{
%X
=
inttoptr
i64
0
to
i32
*
; <i32*> [#uses=1]
ret
i32
*
%X
}
; CHECK: ret i32* null
define
i32
*
@test2
()
{
ret
i32
*
null
}
; CHECK: ret i32* null