llvm-6502/test/CodeGen/X86/compare_folding.llx
2007-08-15 13:36:28 +00:00

11 lines
383 B
Plaintext

; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -mcpu=yonah | \
; RUN: grep movsd | count 1
; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -mcpu=yonah | \
; RUN: grep ucomisd
declare bool %llvm.isunordered.f64(double,double)
bool %test1(double %X, double %Y) { ;; Returns isunordered(X,Y)
%COM = call bool %llvm.isunordered.f64(double %X, double %Y)
ret bool %COM
}