__builtin_isunordered test case.

llvm-svn: 33808
This commit is contained in:
Evan Cheng 2007-02-03 00:50:45 +00:00
parent 04c5761386
commit bcc6db26e1
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
; RUN: llvm-as < %s | llc -march=arm &&
; RUN: llvm-as < %s | llc -march=arm | grep bne | wc -l | grep 1 &&
; RUN: llvm-as < %s | llc -march=arm | grep beq | wc -l | grep 1 &&
; RUN: llvm-as < %s | llc -march=arm -enable-thumb &&
; RUN: llvm-as < %s | llc -march=arm -enable-thumb | grep bne | wc -l | grep 1 &&
; RUN: llvm-as < %s | llc -march=arm -enable-thumb | grep beq | wc -l | grep 1
define i32 @f1(float %X, float %Y) {
%tmp = fcmp uno float %X, %Y
%retval = select i1 %tmp, i32 1, i32 -1
ret i32 %retval
}
define i32 @f2(float %X, float %Y) {
%tmp = fcmp ord float %X, %Y
%retval = select i1 %tmp, i32 1, i32 -1
ret i32 %retval
}