about summary refs log tree commit diff
path: root/sysdeps/ieee754/dbl-64/upow.h
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/ieee754/dbl-64/upow.h')
-rw-r--r--sysdeps/ieee754/dbl-64/upow.h46
1 files changed, 23 insertions, 23 deletions
diff --git a/sysdeps/ieee754/dbl-64/upow.h b/sysdeps/ieee754/dbl-64/upow.h
index 633190b671..33c1461823 100644
--- a/sysdeps/ieee754/dbl-64/upow.h
+++ b/sysdeps/ieee754/dbl-64/upow.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.
  */
 /******************************************************************/
 /*                                                                */
@@ -31,34 +31,34 @@
 
 #ifdef BIG_ENDI
   const static mynumber
-/**/ INF            = {0x7ff00000, 0x00000000 }, /* INF           */
-/**/ NaNQ           = {0x7ff80000, 0x00000000 }, /* NaNQ          */
-/**/ sqrt_2         = {0x3ff6a09e, 0x667f3bcc }, /* sqrt(2)       */
-/**/ ln2a           = {0x3fe62e42, 0xfefa3800 }, /* ln(2) 43 bits */
-/**/ ln2b           = {0x3d2ef357, 0x93c76730 }, /* ln(2)-ln2a    */
-/**/ bigu           = {0x4297ffff, 0xfffffd2c }, /* 1.5*2**42 -724*2**-10  */
-/**/ bigv           = {0x4207ffff, 0xfff8016a }, /* 1.5*2**33-1+362*2**-19  */
-/**/ t52            = {0x43300000, 0x00000000 }, /* 2**52         */
-/**/ two52e         = {0x43300000, 0x000003ff }; /* 2**52'        */
+/**/ INF            = {{0x7ff00000, 0x00000000}}, /* INF           */
+/**/ NaNQ           = {{0x7ff80000, 0x00000000}}, /* NaNQ          */
+/**/ sqrt_2         = {{0x3ff6a09e, 0x667f3bcc}}, /* sqrt(2)       */
+/**/ ln2a           = {{0x3fe62e42, 0xfefa3800}}, /* ln(2) 43 bits */
+/**/ ln2b           = {{0x3d2ef357, 0x93c76730}}, /* ln(2)-ln2a    */
+/**/ bigu           = {{0x4297ffff, 0xfffffd2c}}, /* 1.5*2**42 -724*2**-10  */
+/**/ bigv           = {{0x4207ffff, 0xfff8016a}}, /* 1.5*2**33-1+362*2**-19  */
+/**/ t52            = {{0x43300000, 0x00000000}}, /* 2**52         */
+/**/ two52e         = {{0x43300000, 0x000003ff}}; /* 2**52'        */
 
  mynumber
-/**/ two52          = {0x43300000, 0x00000000 }; /* 2**52         */
+/**/ two52          = {{0x43300000, 0x00000000}}; /* 2**52         */
 
 #else
 #ifdef LITTLE_ENDI
   const static mynumber
-/**/ INF            = {0x00000000, 0x7ff00000 }, /* INF           */
-/**/ NaNQ           = {0x00000000, 0x7ff80000 }, /* NaNQ          */
-/**/ sqrt_2         = {0x667f3bcc, 0x3ff6a09e }, /* sqrt(2)       */
-/**/ ln2a           = {0xfefa3800, 0x3fe62e42 }, /* ln(2) 43 bits */
-/**/ ln2b           = {0x93c76730, 0x3d2ef357 }, /* ln(2)-ln2a    */
-/**/ bigu           = {0xfffffd2c, 0x4297ffff }, /* 1.5*2**42 -724*2**-10  */
-/**/ bigv           = {0xfff8016a, 0x4207ffff }, /* 1.5*2**33-1+362*2**-19  */
-/**/ t52            = {0x00000000, 0x43300000 }, /* 2**52         */
-/**/ two52e         = {0x000003ff, 0x43300000 }; /* 2**52'        */
+/**/ INF            = {{0x00000000, 0x7ff00000}}, /* INF           */
+/**/ NaNQ           = {{0x00000000, 0x7ff80000}}, /* NaNQ          */
+/**/ sqrt_2         = {{0x667f3bcc, 0x3ff6a09e}}, /* sqrt(2)       */
+/**/ ln2a           = {{0xfefa3800, 0x3fe62e42}}, /* ln(2) 43 bits */
+/**/ ln2b           = {{0x93c76730, 0x3d2ef357}}, /* ln(2)-ln2a    */
+/**/ bigu           = {{0xfffffd2c, 0x4297ffff}}, /* 1.5*2**42 -724*2**-10  */
+/**/ bigv           = {{0xfff8016a, 0x4207ffff}}, /* 1.5*2**33-1+362*2**-19  */
+/**/ t52            = {{0x00000000, 0x43300000}}, /* 2**52         */
+/**/ two52e         = {{0x000003ff, 0x43300000}}; /* 2**52'        */
 
  mynumber
-/**/ two52          = {0x00000000, 0x43300000 }; /* 2**52         */
+/**/ two52          = {{0x00000000, 0x43300000}}; /* 2**52         */
 
 #endif
 #endif