Print this page


Split Close
Expand all
Collapse all
          --- old/usr/src/lib/libm/common/LD/__tanl.c
          +++ new/usr/src/lib/libm/common/LD/__tanl.c
↓ open down ↓ 103 lines elided ↑ open up ↑
 104  104  t7      =  1.455834387051455257856833807581901305474e-0003L,
 105  105  t8      =  5.900274409318599857829983256201725587477e-0004L,
 106  106  t9      =  2.391291152117265181501116961901122362937e-0004L,
 107  107  t10     =  9.691533169382729742394024173194981882375e-0005L,
 108  108  t11     =  3.927994733186415603228178184225780859951e-0005L,
 109  109  t12     =  1.588300018848323824227640064883334101288e-0005L,
 110  110  t13     =  6.916271223396808311166202285131722231723e-0006L;
 111  111  /* INDENT ON */
 112  112  long double
 113  113  __k_tanl(long double x, long double y, int k) {
 114      -        long double a, t, z, w, s, c;
      114 +        long double a, t, z, w = 0.0, s, c;
 115  115          int *pt = (int *) &t, *px = (int *) &x;
 116  116          int i, j, hx, ix;
 117  117  
 118  118          t = 1.0;
 119  119  #if defined(__i386) || defined(__amd64)
 120  120          XTOI(px, hx);
 121  121  #else
 122  122          hx = px[0];
 123  123  #endif
 124  124          ix = hx & 0x7fffffff;
↓ open down ↓ 47 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX