mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 00:12:50 +01:00
df2896d609
llvm-svn: 81290
13 lines
277 B
LLVM
13 lines
277 B
LLVM
; RUN: llc < %s -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
|
|
}
|
|
|
|
|