// { dg-do run { target c++11 } } // { dg-add-options ieee } // 2010-02-25 Ed Smith-Rowland // Copyright (C) 2010-2020 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the // terms of the GNU General Public License as published by the // Free Software Foundation; either version 3, or (at your option) // any later version. // This library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // You should have received a copy of the GNU General Public License along // with this library; see the file COPYING3. If not see // . // 18.2.1.1 template class numeric_limits #include #include #include void test01() { VERIFY( std::numeric_limits::max_digits10 == 0 ); VERIFY( std::numeric_limits::max_digits10 == 0 ); VERIFY( std::numeric_limits::max_digits10 == 0 ); VERIFY( std::numeric_limits::max_digits10 == 0 ); VERIFY( std::numeric_limits::max_digits10 == 0 ); VERIFY( std::numeric_limits::max_digits10 == 0 ); VERIFY( std::numeric_limits::max_digits10 == 0 ); VERIFY( std::numeric_limits::max_digits10 == 0 ); VERIFY( std::numeric_limits::max_digits10 == 0 ); VERIFY( std::numeric_limits::max_digits10 == 0 ); VERIFY( std::numeric_limits::max_digits10 == 0 ); VERIFY( std::numeric_limits::max_digits10 == 0 ); VERIFY( std::numeric_limits::max_digits10 == 0 ); #ifdef _GLIBCXX_USE_CHAR8_T VERIFY( std::numeric_limits::max_digits10 == 0 ); #endif VERIFY( std::numeric_limits::max_digits10 == 0 ); VERIFY( std::numeric_limits::max_digits10 == 0 ); // GNU Extensions. #ifdef _GLIBCXX_USE_INT128 VERIFY( std::numeric_limits<__int128>::max_digits10 == 0 ); VERIFY( std::numeric_limits::max_digits10 == 0 ); #endif const int f_max_digits10 = (2 + std::numeric_limits::digits * 643 / 2136); VERIFY( std::numeric_limits::max_digits10 == f_max_digits10 ); const int d_max_digits10 = (2 + std::numeric_limits::digits * 643 / 2136); VERIFY( std::numeric_limits::max_digits10 == d_max_digits10 ); const int ld_max_digits10 = (2 + std::numeric_limits::digits * 643 / 2136); VERIFY( std::numeric_limits::max_digits10 == ld_max_digits10 ); } int main() { test01(); return 0; }