This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository newlib.
from c165a27c0 RTEMS: Fix _PTHREAD_MUTEX_INITIALIZER new c15609827 New expf, exp2f, logf, log2f and powf implementations
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: newlib/libc/include/machine/ieeefp.h | 27 +++ newlib/libm/common/Makefile.am | 7 +- newlib/libm/common/Makefile.in | 148 +++++++++---- newlib/libm/common/math_config.h | 179 ++++++++++++++++ newlib/libm/common/math_errf.c | 89 ++++++++ newlib/libm/common/sf_exp.c | 113 ++++++++++ newlib/libm/common/sf_exp2.c | 99 +++++++++ newlib/libm/common/sf_exp2_data.c | 56 +++++ newlib/libm/common/sf_log.c | 98 +++++++++ newlib/libm/common/sf_log2.c | 131 ++++++++---- .../arm/s_ceil.c => common/sf_log2_data.c} | 46 +++-- .../{machine/arm/s_ceil.c => common/sf_log_data.c} | 46 +++-- newlib/libm/common/sf_pow.c | 230 +++++++++++++++++++++ newlib/libm/common/sf_pow_log2_data.c | 57 +++++ newlib/libm/math/Makefile.am | 3 +- newlib/libm/math/Makefile.in | 14 +- newlib/libm/math/ef_exp.c | 2 + newlib/libm/math/ef_log.c | 2 + newlib/libm/math/ef_pow.c | 2 + newlib/libm/math/wf_exp.c | 2 + newlib/libm/math/wf_exp2.c | 2 + newlib/libm/math/wf_log.c | 2 + newlib/libm/{common/sf_log2.c => math/wf_log2.c} | 8 +- newlib/libm/math/wf_pow.c | 2 + 24 files changed, 1244 insertions(+), 121 deletions(-) create mode 100644 newlib/libm/common/math_config.h create mode 100644 newlib/libm/common/math_errf.c create mode 100644 newlib/libm/common/sf_exp.c create mode 100644 newlib/libm/common/sf_exp2.c create mode 100644 newlib/libm/common/sf_exp2_data.c create mode 100644 newlib/libm/common/sf_log.c copy newlib/libm/{machine/arm/s_ceil.c => common/sf_log2_data.c} (52%) copy newlib/libm/{machine/arm/s_ceil.c => common/sf_log_data.c} (52%) create mode 100644 newlib/libm/common/sf_pow.c create mode 100644 newlib/libm/common/sf_pow_log2_data.c copy newlib/libm/{common/sf_log2.c => math/wf_log2.c} (84%)