aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/pr88173-2.C
blob: aa7d7849913cdfed389c89588c078bdc8864e42d (plain)
1
2
3
4
5
6
7
8
9
/* { dg-do compile } */
/* { dg-options "-O2 -fsignaling-nans -std=c++11" } */

#define big __builtin_huge_val()
#define nan __builtin_nan("")

constexpr bool b1 = big > nan;
constexpr bool b2 = nan < big;