mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 19:52:54 +01:00
4572ce85b0
llvm-svn: 33296
10 lines
223 B
LLVM
10 lines
223 B
LLVM
; RUN: llvm-upgrade < %s | llvm-as | opt -constprop | llvm-dis | grep -F 'ret i32* 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*)
|
|
}
|