Sign in
swiftshader
/
SwiftShader
/
a36f3f9a6e33f451f3e8a9a61363d57ca91c46e5
/
.
/
src
/
LLVM
/
test
/
Transforms
/
ConstProp
/
float-to-ptr-cast.ll
blob: f60af451642d40d38fb9c0f291a84bd07bfed773 [
file
]
; 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