]> git.pld-linux.org Git - packages/dietlibc.git/commitdiff
- patch updated. auto/th/dietlibc-0_29-2
authorPaweł Sikora <pluto@pld-linux.org>
Fri, 24 Feb 2006 21:18:40 +0000 (21:18 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
  initializing `const double` vector with `const long double` coeffs is quirky.
  this funny initialization was exposed by gcc bug @ ppc :>

Changed files:
    dietlibc-gcc4.patch -> 1.3

dietlibc-gcc4.patch

index 8a952aa2adbe328b0cc09378d198d830ad5a4b51..3c7a445967a7f07dd91a60d978c125982eb406d5 100644 (file)
  #endif
  
  /* now reuse some unchanged sources */
+--- dietlibc-0.29/libm/gamma.c.orig    2005-03-15 08:51:23.000000000 +0000
++++ dietlibc-0.29/libm/gamma.c 2006-02-24 21:09:59.000000000 +0000
+@@ -33,19 +33,19 @@
+ #include <stdlib.h>
+ #include <math.h>
+-#define B0      +            1.0l/   6/ 1/ 2
+-#define B1      -            1.0l/  30/ 3/ 4
+-#define B2      +            1.0l/  42/ 5/ 6
+-#define B3      -            1.0l/  30/ 7/ 8
+-#define B4      +            5.0l/  66/ 9/10
+-#define B5      -          691.0l/2730/11/12
+-#define B6      +            7.0l/   6/13/14
+-#define B7      -         3617.0l/ 510/15/16
+-#define B8      +        43867.0l/ 798/17/18
+-#define B9      -       174611.0l/ 330/19/20
+-#define B10     +       854513.0l/ 138/21/22
+-#define B11     -    236364091.0l/2730/23/24
+-#define B12     +      8553103.0l/   6/25/26
++#define B0      +            1.0/   6/ 1/ 2
++#define B1      -            1.0/  30/ 3/ 4
++#define B2      +            1.0/  42/ 5/ 6
++#define B3      -            1.0/  30/ 7/ 8
++#define B4      +            5.0/  66/ 9/10
++#define B5      -          691.0/2730/11/12
++#define B6      +            7.0/   6/13/14
++#define B7      -         3617.0/ 510/15/16
++#define B8      +        43867.0/ 798/17/18
++#define B9      -       174611.0/ 330/19/20
++#define B10     +       854513.0/ 138/21/22
++#define B11     -    236364091.0/2730/23/24
++#define B12     +      8553103.0/   6/25/26
+ static const double  coeff[] = { B0, B1, B2, B3, B4, B5, B6, B7, B8, B9, B10 };
+ int                  signgam;
This page took 0.077183 seconds and 4 git commands to generate.