mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-17 03:30:28 +00:00
33d137f90a
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40444 91177308-0d34-0410-b5e6-96231b3b80d8
15 lines
433 B
LLVM
15 lines
433 B
LLVM
; RUN: llvm-upgrade < %s | llvm-as | opt -fdse -scalarrepl -instcombine | \
|
|
; RUN: llvm-dis | not grep {ret int undef}
|
|
|
|
int %test(double %__x) {
|
|
%__u = alloca { [3 x int] }
|
|
%tmp.1 = cast { [3 x int] }* %__u to double*
|
|
store double %__x, double* %tmp.1
|
|
%tmp.4 = getelementptr { [3 x int] }* %__u, int 0, uint 0, int 1
|
|
%tmp.5 = load int* %tmp.4
|
|
%tmp.6 = setlt int %tmp.5, 0
|
|
%tmp.7 = cast bool %tmp.6 to int
|
|
ret int %tmp.7
|
|
}
|
|
|