1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00
llvm-mirror/test/CodeGen/Generic/isunord.ll
Tanya Lattner aeb9bb8ba4 Remove llvm-upgrade and update tests.
llvm-svn: 47296
2008-02-19 01:41:04 +00:00

11 lines
221 B
LLVM

; RUN: llvm-as < %s | llc
; XFAIL: ia64
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
}