blob: e138688b1193beed3af195323bf0be43d5ab757d [file] [log] [blame]
; 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
}