1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 12:12:47 +01:00
llvm-mirror/test/CodeGen/Generic/isunord.ll
Dan Gohman 62c8b40b66 Remove the IA-64 backend.
llvm-svn: 76920
2009-07-24 00:30:09 +00:00

10 lines
207 B
LLVM

; RUN: llvm-as < %s | llc
declare i1 @llvm.isunordered.f64(double, double)
define i1 @test(double %X, double %Y) {
%tmp27 = fcmp uno double %X, %Y ; <i1> [#uses=1]
ret i1 %tmp27
}