mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
794fa1f8f7
llvm-svn: 41097
12 lines
229 B
LLVM
12 lines
229 B
LLVM
; RUN: llvm-upgrade < %s | llvm-as | opt -constprop | llvm-dis | \
|
|
; RUN: grep -F {ret i32* null} | count 2
|
|
|
|
int* %test1() {
|
|
%X = cast float 0.0 to int*
|
|
ret int* %X
|
|
}
|
|
|
|
int* %test2() {
|
|
ret int* cast (float 0.0 to int*)
|
|
}
|