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 7