1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-30 07:22:55 +01:00
llvm-mirror/test/Regression/CodeGen/X86/compare_folding.llx
Evan Cheng 1ff54fff5c Update tests.
llvm-svn: 30895
2006-10-12 01:42:03 +00:00

9 lines
309 B
Plaintext

; RUN: llvm-as < %s | llc -march=x86 | grep movsd | wc -l | grep 1 &&
; RUN: llvm-as < %s | llc -march=x86 | grep ucomisd
declare bool %llvm.isunordered(double,double)
bool %test1(double %X, double %Y) { ;; Returns isunordered(X,Y)
%COM = call bool %llvm.isunordered(double %X, double %Y)
ret bool %COM
}