hanchenye-llvm-project/llvm/test/Transforms/ConstProp/float-to-ptr-cast.ll

12 lines
236 B
LLVM
Raw Normal View History

; RUN: llvm-upgrade < %s | llvm-as | opt -constprop | llvm-dis | \
; RUN: grep -F {ret i32* null} | wc -l | grep 2
2006-11-21 05:20:57 +08:00
int* %test1() {
%X = cast float 0.0 to int*
ret int* %X
}
int* %test2() {
ret int* cast (float 0.0 to int*)
}