]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/commit
* Makefile:
authorSteve Kargl <kargl@FreeBSD.org>
Mon, 15 Sep 2014 23:21:57 +0000 (23:21 +0000)
committerSteve Kargl <kargl@FreeBSD.org>
Mon, 15 Sep 2014 23:21:57 +0000 (23:21 +0000)
commitf7efd14df151cd21330a66aac3ca183beda0f62d
tree703e4d5f343e4dea078b2783f81a37b7d1b48b73
parente2cc4003e27e12fcc4213bbfcd0aeed3945d60f7
* Makefile:
  . Hook e_lgammal[_r].c to the build.
  . Create man page links for lgammal[-r].3.

* Symbol.map:
  . Sort lgammal to its rightful place.
  . Add FBSD_1.4 section for the new lgamal_r symbol.

* ld128/e_lgammal_r.c:
  . 128-bit implementataion of lgammal_r().

* ld80/e_lgammal_r.c:
  . Intel 80-bit format implementation of lgammal_r().

* src/e_lgamma.c:
  . Expose lgammal as a weak reference to lgamma for platforms
    where long double is mapped to double.

* src/e_lgamma_r.c:
  . Use integer literal constants instead of real literal constants.
    Let compiler(s) do the job of conversion to the appropriate type.
  . Expose lgammal_r as a weak reference to lgamma_r for platforms
    where long double is mapped to double.

* src/e_lgammaf_r.c:
  . Fixed the Cygnus Support conversion of e_lgamma_r.c to float.
    This includes the generation of new polynomial and rational
    approximations with fewer terms.  For each approximation, include
    a comment on an estimate of the accuracy over the relevant domain.
  . Use integer literal constants instead of real literal constants.
    Let compiler(s) do the job of conversion to the appropriate type.
    This allows the removal of several explicit casts of double values
    to float.

* src/e_lgammal.c:
  . Wrapper for lgammal() about lgammal_r().

* src/imprecise.c:
  . Remove the lgamma.

* src/math.h:
  . Add a prototype for lgammal_r().

* man/lgamma.3:
  . Document the new functions.

Reviewed by: bde
lib/msun/Makefile
lib/msun/Symbol.map
lib/msun/ld128/e_lgammal_r.c [new file with mode: 0644]
lib/msun/ld80/e_lgammal_r.c [new file with mode: 0644]
lib/msun/man/lgamma.3
lib/msun/src/e_lgamma.c
lib/msun/src/e_lgamma_r.c
lib/msun/src/e_lgammaf_r.c
lib/msun/src/e_lgammal.c [new file with mode: 0644]
lib/msun/src/imprecise.c
lib/msun/src/math.h