From 50944bca4bfeefc5de2ec205ad549eb669ed1008 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Mon, 12 Mar 2001 07:57:09 +0000 Subject: Fix warnings. --- sysdeps/ieee754/dbl-64/sincos32.h | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'sysdeps/ieee754/dbl-64/sincos32.h') diff --git a/sysdeps/ieee754/dbl-64/sincos32.h b/sysdeps/ieee754/dbl-64/sincos32.h index fa510e84be..7fa140b97c 100644 --- a/sysdeps/ieee754/dbl-64/sincos32.h +++ b/sysdeps/ieee754/dbl-64/sincos32.h @@ -5,9 +5,9 @@ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by - * the Free Software Foundation; either version 2 of the License, or + * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. - * + * * This program 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 @@ -15,7 +15,7 @@ * * You should have received a copy of the GNU Lesser General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /******************************************************************/ /* */ @@ -29,37 +29,37 @@ #ifdef BIG_ENDI static const number -/**/ hpinv = {0x3FE45F30, 0x6DC9C883 }, /* 0.63661977236758138 */ -/**/ toint = {0x43380000, 0x00000000 }; /* 6755399441055744 */ +/**/ hpinv = {{0x3FE45F30, 0x6DC9C883}}, /* 0.63661977236758138 */ +/**/ toint = {{0x43380000, 0x00000000}}; /* 6755399441055744 */ #else #ifdef LITTLE_ENDI static const number -/**/ hpinv = {0x6DC9C883, 0x3FE45F30 }, /* 0.63661977236758138 */ -/**/ toint = {0x00000000, 0x43380000 }; /* 6755399441055744 */ +/**/ hpinv = {{0x6DC9C883, 0x3FE45F30}}, /* 0.63661977236758138 */ +/**/ toint = {{0x00000000, 0x43380000}}; /* 6755399441055744 */ #endif #endif static const mp_no - oofac27 = {-3, 1.0,7.0,4631664.0,12006312.0,13118056.0,6538613.0,646354.0, + oofac27 = {-3,{1.0,7.0,4631664.0,12006312.0,13118056.0,6538613.0,646354.0, 8508025.0,9131256.0,7548776.0,2529842.0,8864927.0,660489.0,15595125.0,12777885.0, 11618489.0,13348664.0,5486686.0,514518.0,11275535.0,4727621.0,3575562.0, 13579710.0,5829745.0,7531862.0,9507898.0,6915060.0,4079264.0,1907586.0, - 6078398.0,13789314.0,5504104.0,14136.0}, - pi = {1,1.0,3.0, + 6078398.0,13789314.0,5504104.0,14136.0}}, + pi = {1,{1.0,3.0, 2375530.0,8947107.0,578323.0,1673774.0,225395.0,4498441.0,3678761.0, 10432976.0,536314.0,10021966.0,7113029.0,2630118.0,3723283.0,7847508.0, 6737716.0,15273068.0,12626985.0,12044668.0,5299519.0,8705461.0,11880201.0, 1544726.0,14014857.0,7994139.0,13709579.0,10918111.0,11906095.0,16610011.0, - 13638367.0,12040417.0,11529578.0,2522774.0}, - hp = {1, 1.0, 1.0, + 13638367.0,12040417.0,11529578.0,2522774.0}}, + hp = {1,{1.0, 1.0, 9576373.0,4473553.0,8677769.0,9225495.0,112697.0,10637828.0, 10227988.0,13605096.0,268157.0,5010983.0,3556514.0,9703667.0, 1861641.0,12312362.0,3368858.0,7636534.0,6313492.0,14410942.0, 2649759.0,12741338.0,14328708.0,9160971.0,7007428.0,12385677.0, 15243397.0,13847663.0,14341655.0,16693613.0,15207791.0,14408816.0, - 14153397.0,1261387.0,6110792.0,2291862.0,4181138.0,5295267.0}; + 14153397.0,1261387.0,6110792.0,2291862.0,4181138.0,5295267.0}}; static const double toverp[75] = { 10680707.0, 7228996.0, 1387004.0, 2578385.0, 16069853.0, -- cgit v1.2.3