xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGen/2006-12-14-ordered_expr.c (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1 // RUN: %clang_cc1 -O3 -emit-llvm %s -o - | FileCheck %s
2 
test2(float X,float Y)3 int test2(float X, float Y) {
4   // CHECK: fcmp ord float %X, %Y
5   return !__builtin_isunordered(X, Y);
6 }
7