mirror of
https://github.com/RPCSX/llvm.git
synced 2025-01-09 21:50:38 +00:00
69ccadd753
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32115 91177308-0d34-0410-b5e6-96231b3b80d8
10 lines
223 B
LLVM
10 lines
223 B
LLVM
; RUN: llvm-upgrade < %s | llvm-as | 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*)
|
|
}
|