llvm-for-llvmta/test/Transforms/InstSimplify/ConstProp/float-to-ptr-cast.ll

16 lines
260 B
LLVM
Raw Normal View History

2022-04-25 10:02:23 +02:00
; RUN: opt < %s -instsimplify -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