llvm-6502/test/Transforms/ConstProp/float-to-ptr-cast.ll
Chris Lattner bdde0d9553 new testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31885 91177308-0d34-0410-b5e6-96231b3b80d8
2006-11-20 21:20:57 +00:00

10 lines
208 B
LLVM

; 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*)
}