Print this page
11210 libm should be cstyle(1ONBLD) clean

Split Close
Expand all
Collapse all
          --- old/usr/src/lib/libm/sparcv9/src/libm_inlines.h
          +++ new/usr/src/lib/libm/sparcv9/src/libm_inlines.h
↓ open down ↓ 26 lines elided ↑ open up ↑
  27   27  /*
  28   28   * Copyright 2011, Richard Lowe.
  29   29   */
  30   30  
  31   31  /* Functions in this file are duplicated in locallibm.il.  Keep them in sync */
  32   32  
  33   33  #ifndef _LIBM_INLINES_H
  34   34  #define _LIBM_INLINES_H
  35   35  
  36   36  #ifdef __GNUC__
  37      -
  38   37  #include <sys/types.h>
  39   38  #include <sys/ieeefp.h>
  40   39  
  41   40  #ifdef __cplusplus
  42   41  extern "C" {
  43   42  #endif
  44   43  
  45   44  extern __GNU_INLINE enum fp_class_type
  46   45  fp_classf(float f)
  47   46  {
↓ open down ↓ 237 lines elided ↑ open up ↑
 285  284  {
 286  285          float ret;
 287  286  
 288  287          __asm__ __volatile__("fabss %1,%0\n\t" : "=f" (ret) : "f" (f));
 289  288          return (ret);
 290  289  }
 291  290  
 292  291  #ifdef __cplusplus
 293  292  }
 294  293  #endif
 295      -
 296  294  #endif  /* __GNUC__ */
 297      -
 298  295  #endif /* _LIBM_INLINES_H */
    
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX