This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository newlib.
from 34876c05a frexpl: Support smaller long double of LDBL_MANT_DIG == 53. new a4705d387 ldtoa: Import gdtoa from OpenBSD.
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/README | 10 + newlib/configure | 317 +++++----- newlib/configure.ac | 15 + newlib/libc/include/machine/ieee.h | 127 ++++ newlib/libc/include/sys/config.h | 6 + newlib/libc/stdlib/Makefile.am | 10 +- newlib/libc/stdlib/Makefile.in | 51 +- newlib/libc/stdlib/gdtoa-dmisc.c | 230 +++++++ newlib/libc/stdlib/gdtoa-gdtoa.c | 837 ++++++++++++++++++++++++++ newlib/libc/stdlib/{gdtoa.h => gdtoa-gmisc.c} | 93 +-- newlib/libc/stdlib/gdtoa-ldtoa.c | 159 +++++ newlib/libc/stdlib/gdtoa.h | 130 +++- newlib/libc/stdlib/gdtoaimp.h | 206 +++++++ newlib/libc/stdlib/ldtoa.c | 6 + newlib/libc/stdlib/mprec.h | 2 +- newlib/newlib.hin | 3 + 16 files changed, 1998 insertions(+), 204 deletions(-) create mode 100644 newlib/libc/include/machine/ieee.h create mode 100644 newlib/libc/stdlib/gdtoa-dmisc.c create mode 100644 newlib/libc/stdlib/gdtoa-gdtoa.c copy newlib/libc/stdlib/{gdtoa.h => gdtoa-gmisc.c} (61%) create mode 100644 newlib/libc/stdlib/gdtoa-ldtoa.c create mode 100644 newlib/libc/stdlib/gdtoaimp.h