// { dg-options "-std=gnu++0x" } // { dg-add-options ieee } // 2010-02-25 Ed Smith-Rowland // Copyright (C) 2010 Free Software Foundation // // 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() { bool test __attribute__((unused)) = true; 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 ); VERIFY( std::numeric_limits::max_digits10 == 0 ); VERIFY( std::numeric_limits::max_digits10 == 0 ); 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; }