Sign in
gnu
/
gcc
/
refs/heads/devel/c++-contracts
/
.
/
gcc
/
testsuite
/
g++.dg
/
pr88173-1.C
blob: 08fcf97ff16ec70924cffdd6d07a81132e93405f [
file
] [
log
] [
blame
]
/* { dg-do compile } */
/* { dg-options "-O2 -std=c++11" } */
#define
big __builtin_huge_val
()
#define
nan __builtin_nan
(
""
)
constexpr
bool
b1
=
big
>
nan
;
constexpr
bool
b2
=
nan
<
big
;