Print this page
5261 libm should stop using synonyms.h

Split Close
Expand all
Collapse all
          --- old/usr/src/lib/libm/common/LD/sincosl.c
          +++ new/usr/src/lib/libm/common/LD/sincosl.c
↓ open down ↓ 19 lines elided ↑ open up ↑
  20   20   */
  21   21  
  22   22  /*
  23   23   * Copyright 2011 Nexenta Systems, Inc.  All rights reserved.
  24   24   */
  25   25  /*
  26   26   * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
  27   27   * Use is subject to license terms.
  28   28   */
  29   29  
  30      -#pragma weak sincosl = __sincosl
       30 +#pragma weak __sincosl = sincosl
  31   31  
  32   32  /* INDENT OFF */
  33   33  /* cosl(x)
  34   34   * Table look-up algorithm by K.C. Ng, November, 1989.
  35   35   *
  36   36   * kernel function:
  37   37   *      __k_sincosl     ... sin and cos function on [-pi/4,pi/4]
  38   38   *      __rem_pio2l     ... argument reduction routine
  39   39   *
  40   40   * Method.
↓ open down ↓ 14 lines elided ↑ open up ↑
  55   55   *      Let trig be any of sin, cos, or tan.
  56   56   *      trig(+-INF)  is NaN, with signals;
  57   57   *      trig(NaN)    is that NaN;
  58   58   *
  59   59   * Accuracy:
  60   60   *      computer TRIG(x) returns trig(x) nearly rounded.
  61   61   */
  62   62  /* INDENT ON */
  63   63  
  64   64  #include "libm.h"
  65      -#include "libm_synonyms.h"
  66   65  #include "longdouble.h"
  67   66  
  68   67  #include <sys/isa_defs.h>
  69   68  
  70   69  void
  71   70  sincosl(long double x, long double *s, long double *c) {
  72   71          long double y[2], z = 0.0L;
  73   72          int n, ix;
  74   73  #if defined(__i386) || defined(__amd64)
  75   74          int *px = (int *) &x;
↓ open down ↓ 40 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX