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);
}