1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 12:33:33 +02:00
llvm-mirror/test/CodeGen/X86/2004-02-22-Casts.ll

13 lines
287 B
LLVM
Raw Normal View History

2008-03-25 05:26:08 +01:00
; 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
}
2008-03-25 05:26:08 +01:00
define double @test2(i64 %X) {
%V = uitofp i64 %X to double ; <double> [#uses=1]
ret double %V
}
2008-03-25 05:26:08 +01:00