public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
* [PATCH v5 0/3] New strfrom functions
@ 2016-10-04 20:58 Gabriel F. T. Gomes
  2016-10-04 20:58 ` [PATCH v5 3/3] Add tests for " Gabriel F. T. Gomes
                   ` (2 more replies)
  0 siblings, 3 replies; 9+ messages in thread
From: Gabriel F. T. Gomes @ 2016-10-04 20:58 UTC (permalink / raw)
  To: libc-alpha; +Cc: joseph

Changes since v4:
  - Added compatibility with -mlong-double-64

Tested on ppc and ppc64le.

For the compatibility tests, I built the test case (tst-strfrom) with
-mlong-double-64 and ran it with gdb.  A breakpoint on strfroml was not
reached, and a breakpoint on strfromd was reached twice as much as without
-mlong-double-64.  This is what I was expecting.

Gabriel F. T. Gomes (1):
  Add strfromd, strfromf, and strfroml functions

Rajalakshmi Srinivasaraghavan (2):
  Refactor strtod tests
  Add tests for strfrom functions

 NEWS                                               |   3 +
 manual/arith.texi                                  |  41 +++++
 stdlib/Makefile                                    |  11 +-
 stdlib/Versions                                    |   4 +
 stdlib/bits/stdlib-ldbl.h                          |   7 +
 stdlib/bug-strtod.c                                |   6 +-
 stdlib/bug-strtod2.c                               |   2 +-
 stdlib/stdlib.h                                    |  18 ++-
 stdlib/strfrom-skeleton.c                          | 153 ++++++++++++++++++
 stdlib/strfromd.c                                  |  23 +++
 stdlib/strfromf.c                                  |  23 +++
 stdlib/strfroml.c                                  |  23 +++
 stdlib/tst-strfrom-locale.c                        | 179 +++++++++++++++++++++
 stdlib/tst-strfrom.c                               | 179 +++++++++++++++++++++
 stdlib/tst-strtod-round-skeleton.c                 |  24 ++-
 stdlib/tst-strtod.h                                |   7 +-
 stdlib/tst-strtod6.c                               |   2 +-
 sysdeps/arm/nacl/libc.abilist                      |   3 +
 sysdeps/ieee754/ldbl-opt/Makefile                  |   1 +
 sysdeps/ieee754/ldbl-opt/nldbl-strfroml.c          |   8 +
 sysdeps/unix/sysv/linux/aarch64/libc.abilist       |   3 +
 sysdeps/unix/sysv/linux/alpha/libc.abilist         |   3 +
 sysdeps/unix/sysv/linux/arm/libc.abilist           |   3 +
 sysdeps/unix/sysv/linux/hppa/libc.abilist          |   3 +
 sysdeps/unix/sysv/linux/i386/libc.abilist          |   3 +
 sysdeps/unix/sysv/linux/ia64/libc.abilist          |   3 +
 sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist |   3 +
 sysdeps/unix/sysv/linux/m68k/m680x0/libc.abilist   |   3 +
 sysdeps/unix/sysv/linux/microblaze/libc.abilist    |   3 +
 .../unix/sysv/linux/mips/mips32/fpu/libc.abilist   |   3 +
 .../unix/sysv/linux/mips/mips32/nofpu/libc.abilist |   3 +
 .../unix/sysv/linux/mips/mips64/n32/libc.abilist   |   3 +
 .../unix/sysv/linux/mips/mips64/n64/libc.abilist   |   3 +
 sysdeps/unix/sysv/linux/nios2/libc.abilist         |   3 +
 .../sysv/linux/powerpc/powerpc32/fpu/libc.abilist  |   3 +
 .../linux/powerpc/powerpc32/nofpu/libc.abilist     |   3 +
 .../sysv/linux/powerpc/powerpc64/libc-le.abilist   |   3 +
 .../unix/sysv/linux/powerpc/powerpc64/libc.abilist |   3 +
 sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist  |   3 +
 sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist  |   3 +
 sysdeps/unix/sysv/linux/sh/libc.abilist            |   3 +
 sysdeps/unix/sysv/linux/sparc/sparc32/libc.abilist |   3 +
 sysdeps/unix/sysv/linux/sparc/sparc64/libc.abilist |   3 +
 .../sysv/linux/tile/tilegx/tilegx32/libc.abilist   |   3 +
 .../sysv/linux/tile/tilegx/tilegx64/libc.abilist   |   3 +
 sysdeps/unix/sysv/linux/tile/tilepro/libc.abilist  |   3 +
 sysdeps/unix/sysv/linux/x86_64/64/libc.abilist     |   3 +
 sysdeps/unix/sysv/linux/x86_64/x32/libc.abilist    |   3 +
 48 files changed, 777 insertions(+), 24 deletions(-)
 create mode 100644 stdlib/strfrom-skeleton.c
 create mode 100644 stdlib/strfromd.c
 create mode 100644 stdlib/strfromf.c
 create mode 100644 stdlib/strfroml.c
 create mode 100644 stdlib/tst-strfrom-locale.c
 create mode 100644 stdlib/tst-strfrom.c
 create mode 100644 sysdeps/ieee754/ldbl-opt/nldbl-strfroml.c

-- 
2.4.11

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2016-10-05 21:06 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-10-04 20:58 [PATCH v5 0/3] New strfrom functions Gabriel F. T. Gomes
2016-10-04 20:58 ` [PATCH v5 3/3] Add tests for " Gabriel F. T. Gomes
2016-10-04 20:58 ` [PATCH v5 2/3] Refactor strtod tests Gabriel F. T. Gomes
2016-10-04 20:58 ` [PATCH v5 1/3] Add strfromd, strfromf, and strfroml functions Gabriel F. T. Gomes
2016-10-05  8:38   ` Rical Jasan
2016-10-05 12:07     ` Joseph Myers
2016-10-05 13:55       ` Gabriel F. T. Gomes
2016-10-05 16:05     ` Joseph Myers
2016-10-05 21:06       ` Rical Jasan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).