blob: c46ba8578941f54f98398b8ab9ecd1846efcf00d [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 -O3 -emit-llvm %s -o - | FileCheck %s
2
3int test2(float X, float Y) {
4 // CHECK: fcmp ord float %X, %Y
5 return !__builtin_isunordered(X, Y);
6}