mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-27 14:34:58 +00:00
bdde0d9553
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31885 91177308-0d34-0410-b5e6-96231b3b80d8
10 lines
208 B
LLVM
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*)
|
|
}
|