2010-05-11 21:42:16 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2010-05-11 23:36:01 +02:00
|
|
|
// The LLVM Compiler Infrastructure
|
2010-05-11 21:42:16 +02:00
|
|
|
//
|
2010-11-16 23:09:02 +01:00
|
|
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
|
|
|
// Source Licenses. See LICENSE.TXT for details.
|
2010-05-11 21:42:16 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// test numeric_limits
|
|
|
|
|
|
|
|
// signaling_NaN()
|
|
|
|
|
|
|
|
#include <limits>
|
|
|
|
#include <cmath>
|
|
|
|
#include <type_traits>
|
|
|
|
#include <cassert>
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
void
|
|
|
|
test_imp(std::true_type)
|
|
|
|
{
|
|
|
|
assert(std::isnan(std::numeric_limits<T>::signaling_NaN()));
|
|
|
|
assert(std::isnan(std::numeric_limits<const T>::signaling_NaN()));
|
|
|
|
assert(std::isnan(std::numeric_limits<volatile T>::signaling_NaN()));
|
|
|
|
assert(std::isnan(std::numeric_limits<const volatile T>::signaling_NaN()));
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
void
|
|
|
|
test_imp(std::false_type)
|
|
|
|
{
|
|
|
|
assert(std::numeric_limits<T>::signaling_NaN() == T());
|
|
|
|
assert(std::numeric_limits<const T>::signaling_NaN() == T());
|
|
|
|
assert(std::numeric_limits<volatile T>::signaling_NaN() == T());
|
|
|
|
assert(std::numeric_limits<const volatile T>::signaling_NaN() == T());
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
inline
|
|
|
|
void
|
|
|
|
test()
|
|
|
|
{
|
|
|
|
test_imp<T>(std::is_floating_point<T>());
|
|
|
|
}
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
test<bool>();
|
|
|
|
test<char>();
|
|
|
|
test<signed char>();
|
|
|
|
test<unsigned char>();
|
|
|
|
test<wchar_t>();
|
|
|
|
#ifndef _LIBCPP_HAS_NO_UNICODE_CHARS
|
|
|
|
test<char16_t>();
|
|
|
|
test<char32_t>();
|
2010-08-22 02:31:12 +02:00
|
|
|
#endif // _LIBCPP_HAS_NO_UNICODE_CHARS
|
2010-05-11 21:42:16 +02:00
|
|
|
test<short>();
|
|
|
|
test<unsigned short>();
|
|
|
|
test<int>();
|
|
|
|
test<unsigned int>();
|
|
|
|
test<long>();
|
|
|
|
test<unsigned long>();
|
|
|
|
test<long long>();
|
|
|
|
test<unsigned long long>();
|
|
|
|
test<float>();
|
|
|
|
test<double>();
|
|
|
|
test<long double>();
|
|
|
|
}
|