diff options
author | Joseph Myers <joseph@codesourcery.com> | 2012-10-30 13:51:27 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2012-10-30 13:51:27 +0000 |
commit | 2a27fd6dae3edec949deda9a55928a0e22c8a8ae (patch) | |
tree | 9c9fcc6c86b0f7c04454a5833d5efbe17dc79117 /ports | |
parent | e5088dc6870b072a263f207af9e410c82f80a09e (diff) | |
download | glibc-2a27fd6dae3edec949deda9a55928a0e22c8a8ae.tar.gz glibc-2a27fd6dae3edec949deda9a55928a0e22c8a8ae.tar.xz glibc-2a27fd6dae3edec949deda9a55928a0e22c8a8ae.zip |
Fix strtod handling of underflow (bug 14047).
Diffstat (limited to 'ports')
-rw-r--r-- | ports/ChangeLog.alpha | 5 | ||||
-rw-r--r-- | ports/ChangeLog.am33 | 5 | ||||
-rw-r--r-- | ports/ChangeLog.hppa | 5 | ||||
-rw-r--r-- | ports/ChangeLog.ia64 | 5 | ||||
-rw-r--r-- | ports/ChangeLog.mips | 5 | ||||
-rw-r--r-- | ports/sysdeps/alpha/tininess.h | 1 | ||||
-rw-r--r-- | ports/sysdeps/am33/tininess.h | 1 | ||||
-rw-r--r-- | ports/sysdeps/hppa/tininess.h | 1 | ||||
-rw-r--r-- | ports/sysdeps/ia64/tininess.h | 1 | ||||
-rw-r--r-- | ports/sysdeps/mips/tininess.h | 1 |
10 files changed, 30 insertions, 0 deletions
diff --git a/ports/ChangeLog.alpha b/ports/ChangeLog.alpha index 8ddde9f25f..eff592b0cb 100644 --- a/ports/ChangeLog.alpha +++ b/ports/ChangeLog.alpha @@ -1,3 +1,8 @@ +2012-10-30 Joseph Myers <joseph@codesourcery.com> + + [BZ #14047] + * sysdeps/alpha/tininess.h: New file. + 2012-10-19 Roland McGrath <roland@hack.frob.com> * sysdeps/unix/sysv/linux/alpha/nptl/libc.abilist diff --git a/ports/ChangeLog.am33 b/ports/ChangeLog.am33 index e8243c5326..d732d2c2b8 100644 --- a/ports/ChangeLog.am33 +++ b/ports/ChangeLog.am33 @@ -1,3 +1,8 @@ +2012-10-30 Joseph Myers <joseph@codesourcery.com> + + [BZ #14047] + * sysdeps/am33/tininess.h: New file. + 2012-10-09 Roland McGrath <roland@hack.frob.com> * sysdeps/unix/sysv/linux/am33/configure: Regenerated. diff --git a/ports/ChangeLog.hppa b/ports/ChangeLog.hppa index 41b594c6e5..6c828ddbfc 100644 --- a/ports/ChangeLog.hppa +++ b/ports/ChangeLog.hppa @@ -1,3 +1,8 @@ +2012-10-30 Joseph Myers <joseph@codesourcery.com> + + [BZ #14047] + * sysdeps/hppa/tininess.h: New file. + 2012-10-29 Carlos O'Donell <carlos@systemhalted.org> * sysdeps/unix/sysv/linux/hppa/sysdep.h (ENTRY): Add cfi_startproc. diff --git a/ports/ChangeLog.ia64 b/ports/ChangeLog.ia64 index 47f51c1ae1..1531304ad6 100644 --- a/ports/ChangeLog.ia64 +++ b/ports/ChangeLog.ia64 @@ -1,3 +1,8 @@ +2012-10-30 Joseph Myers <joseph@codesourcery.com> + + [BZ #14047] + * sysdeps/ia64/tininess.h: New file. + 2012-10-25 Andreas Jaeger <aj@suse.de> * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Remove all diff --git a/ports/ChangeLog.mips b/ports/ChangeLog.mips index 76f2703881..507deb6fef 100644 --- a/ports/ChangeLog.mips +++ b/ports/ChangeLog.mips @@ -1,3 +1,8 @@ +2012-10-30 Joseph Myers <joseph@codesourcery.com> + + [BZ #14047] + * sysdeps/mips/tininess.h: New file. + 2012-10-29 Steve Ellcey <sellcey@mips.com> * sysdeps/unix/sysv/linux/mips/mips32/Makefile: Remove. diff --git a/ports/sysdeps/alpha/tininess.h b/ports/sysdeps/alpha/tininess.h new file mode 100644 index 0000000000..1db37790f8 --- /dev/null +++ b/ports/sysdeps/alpha/tininess.h @@ -0,0 +1 @@ +#define TININESS_AFTER_ROUNDING 1 diff --git a/ports/sysdeps/am33/tininess.h b/ports/sysdeps/am33/tininess.h new file mode 100644 index 0000000000..1db37790f8 --- /dev/null +++ b/ports/sysdeps/am33/tininess.h @@ -0,0 +1 @@ +#define TININESS_AFTER_ROUNDING 1 diff --git a/ports/sysdeps/hppa/tininess.h b/ports/sysdeps/hppa/tininess.h new file mode 100644 index 0000000000..1db37790f8 --- /dev/null +++ b/ports/sysdeps/hppa/tininess.h @@ -0,0 +1 @@ +#define TININESS_AFTER_ROUNDING 1 diff --git a/ports/sysdeps/ia64/tininess.h b/ports/sysdeps/ia64/tininess.h new file mode 100644 index 0000000000..1db37790f8 --- /dev/null +++ b/ports/sysdeps/ia64/tininess.h @@ -0,0 +1 @@ +#define TININESS_AFTER_ROUNDING 1 diff --git a/ports/sysdeps/mips/tininess.h b/ports/sysdeps/mips/tininess.h new file mode 100644 index 0000000000..1db37790f8 --- /dev/null +++ b/ports/sysdeps/mips/tininess.h @@ -0,0 +1 @@ +#define TININESS_AFTER_ROUNDING 1 |