aboutsummaryrefslogtreecommitdiffstats
path: root/test/CFrontend/2006-12-14-ordered_expr.c
blob: 090b989affc1baa2153c03b1d2cd9ec1d5c73f1b (plain)
1
2
3
4
5
6
// RUN: %llvmgcc -O3 -S %s -o - | grep 'fcmp ord float %X, %Y'

int test2(float X, float Y) {
  return !__builtin_isunordered(X, Y);
}