Follow up to d0858bffa11, add missing REQUIRES x86
[llvm-project.git] / llvm / test / Transforms / InstSimplify / ConstProp / float-to-ptr-cast.ll
blob7577e55fd357a66285c02e87eb89ef0a8be20b16
1 ; RUN: opt < %s -passes=instsimplify -S | FileCheck %s
3 define ptr @test1() {
4         %X = inttoptr i64 0 to ptr             ; <ptr> [#uses=1]
5         ret ptr %X
8 ; CHECK:  ret ptr null
10 define ptr @test2() {
11         ret ptr null
14 ; CHECK:  ret ptr null