git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@194535
91177308-0d34-0410-b5e6-
96231b3b80d8
// Visual Studio defines the HUGE_VAL class of macros using purposeful
// constant arithmetic overflow, which it then warns on when encountered.
const float huge_valf = std::numeric_limits<float>::infinity();
- const double huge_vald = std::numeric_limits<double>::infinity();
- const long double huge_vall = std::numeric_limits<long double>::infinity();
#else
const float huge_valf = HUGE_VALF;
- const double huge_vald = HUGE_VALD;
- const long double huge_vall = HUGE_VALL;
#endif
} // End llvm namespace