Sign in
fuchsia
/
third_party
/
swift-clang
/
a40ea3abe6e2f0b338d00c38fe7d724241c5af97
/
.
/
test
/
CodeGen
/
2006-12-14-ordered_expr.c
blob: c46ba8578941f54f98398b8ab9ecd1846efcf00d [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -O3 -emit-llvm %s -o - | FileCheck %s
int
test2
(
float
X
,
float
Y
)
{
// CHECK: fcmp ord float %X, %Y
return
!
__builtin_isunordered
(
X
,
Y
);
}