xref: /aosp_15_r20/external/clang/test/CodeGen/const-unordered-compare.c (revision 67e74705e28f6214e480b399dd47ea732279e315)
1 // RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s
2 
3 // Checks folding of an unordered comparison
nan_ne_check()4 int nan_ne_check() {
5   // CHECK: ret i32 1
6   return (__builtin_nanf("") != __builtin_nanf("")) ? 1 : 0;
7 }
8