mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 12:12:47 +01:00
c310b1f1f3
llvm-svn: 49970
13 lines
287 B
LLVM
13 lines
287 B
LLVM
; RUN: llvm-as < %s | llc -march=x86
|
|
define i1 @test1(double %X) {
|
|
%V = fcmp one double %X, 0.000000e+00 ; <i1> [#uses=1]
|
|
ret i1 %V
|
|
}
|
|
|
|
define double @test2(i64 %X) {
|
|
%V = uitofp i64 %X to double ; <double> [#uses=1]
|
|
ret double %V
|
|
}
|
|
|
|
|