]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/commit
Fix powl, cpow, cpowf, and cpowl imports from OpenBSD
authorDimitry Andric <dim@FreeBSD.org>
Thu, 19 Jul 2018 18:44:10 +0000 (18:44 +0000)
committerDimitry Andric <dim@FreeBSD.org>
Thu, 19 Jul 2018 18:44:10 +0000 (18:44 +0000)
commit2ae9055f49d1ded1633ffdcdb2eabd7a4fbba308
tree9a0adddad5e05f81e08d68d0377a0bb6d2cecfd8
parentacfbf5901384e07ff4b54ef1d6a8480eed6e223e
Fix powl, cpow, cpowf, and cpowl imports from OpenBSD

This is a follow-up to r336299.

* lib/msun/Makefile:
  . Remove polevll.c

* lib/msun/ld80/e_powl.c:
  . Copy contents of polevll.c to here.  This is the only consumer of
    these functions.  Make functions 'static inline'.
  . Make reducl a 'static inline' function.

* lib/msun/man/exp.3:
  . Remove BUGS section that no longer applies.

* lib/msun/src/math_private.h:
  . Remove prototypes of __p1evll() and __polevll()

* lib/msun/src/s_cpow.c:
* lib/msun/src/s_cpowf.c:
* lib/msun/src/s_cpowl.c
  . Use the CMPLX macro from either C99 or math_private.h (depends of
    compiler support) instead of the problematic use of complex I.

Submitted by: Steve Kargl <sgk@troutmask.apl.washington.edu>
PR: 229876
MFC after: 1 week
lib/msun/Makefile
lib/msun/ld80/e_powl.c
lib/msun/man/exp.3
lib/msun/src/math_private.h
lib/msun/src/polevll.c [deleted file]
lib/msun/src/s_cpow.c
lib/msun/src/s_cpowf.c
lib/msun/src/s_cpowl.c