Transform: "icmp eq (trunc (lshr(X, cst1)), cst" to "icmp (and X, mask), cst"
[oota-llvm.git] / test / FrontendC / 2006-12-14-ordered_expr.c
1 // RUN: %llvmgcc -O3 -S %s -o - | grep {fcmp ord float %X, %Y}
2
3 int test2(float X, float Y) {
4   return !__builtin_isunordered(X, Y);
5 }
6