blob: ac7d35bcd5422e520e4658f0fb4892e3487a34c9 [file] [log] [blame]
Mon P Wangfc39dc42010-04-29 05:53:29 +00001// RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s
2
3// Checks folding of an unordered comparison
4int nan_ne_check() {
5 // CHECK: store i32 1
6 return (__builtin_nanf("") != __builtin_nanf("")) ? 1 : 0;
7}