Print this page
5261 libm should stop using synonyms.h

Split Close
Expand all
Collapse all
          --- old/usr/src/lib/libmvec/common/__vsqrtf.c
          +++ new/usr/src/lib/libmvec/common/__vsqrtf.c
↓ open down ↓ 25 lines elided ↑ open up ↑
  26   26   * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
  27   27   * Use is subject to license terms.
  28   28   */
  29   29  
  30   30  #ifdef __RESTRICT
  31   31  #define restrict _Restrict
  32   32  #else
  33   33  #define restrict
  34   34  #endif
  35   35  
  36      -#include "libm_synonyms.h"
  37   36  #include "libm_inlines.h"
  38   37  
  39      -#define sqrtf __sqrtf
  40      -
  41   38  extern float sqrtf(float);
  42   39  
  43   40  void
  44   41  __vsqrtf(int n, float * restrict x, int stridex, float * restrict y, int stridey)
  45   42  {
  46   43          for(; n > 0 ; n--)
  47   44          {
  48   45                  *y = sqrtf(*x);
  49   46                  x += stridex;
  50   47                  y += stridey;
  51   48          }
  52   49  }
  53      -
    
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX