blob: 239b7482bfcf673461cc4fef949e02929cf0e057 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; RUN: llvm-upgrade < %s | llvm-as | opt -constprop | llvm-dis | \
Dan Gohman8c89a502007-08-15 13:36:28 +00002; RUN: grep -F {ret i32* null} | count 2
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003
4int* %test1() {
5 %X = cast float 0.0 to int*
6 ret int* %X
7}
8
9int* %test2() {
10 ret int* cast (float 0.0 to int*)
11}