[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / Transforms / InstSimplify / ConstProp / float-to-ptr-cast.ll
blob56b1704db0d2b4048135d1dd87957c96718d27f6
1 ; RUN: opt < %s -instsimplify -S | FileCheck %s
3 define i32* @test1() {
4         %X = inttoptr i64 0 to i32*             ; <i32*> [#uses=1]
5         ret i32* %X
8 ; CHECK:  ret i32* null
10 define i32* @test2() {
11         ret i32* null
14 ; CHECK:  ret i32* null