summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/2006-12-14-ordered_expr.c
blob: c46ba8578941f54f98398b8ab9ecd1846efcf00d (plain)
1
2
3
4
5
6
// 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);
}