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

10 lines
208 B
LLVM
Raw Normal View History

; RUN: llvm-as < %s | opt -constprop | llvm-dis | grep -F 'ret int* null' | wc -l | grep 2
int* %test1() {
%X = cast float 0.0 to int*
ret int* %X
}
int* %test2() {
ret int* cast (float 0.0 to int*)
}