about summary refs log tree commit diff
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
* Fix values in __mpexp_twomm1Siddhesh Poyarekar2013-01-021-0/+3
|
* Split mantissa calculation loop and add branch predictionSiddhesh Poyarekar2013-01-021-0/+3
|
* Add assert for potential access beyond array bounds in m1npSiddhesh Poyarekar2013-01-021-0/+3
| | | | | | | | | | | The mpexp code has an access into m1np: for (i=n-1; i>0; i--,n--) { if (m1np[i][p]+m2>0) break; } which could break for p >= 18 or i >= 7. Fortunately this code is never called due to the way the exp function is implemented since values having exponent less than -55 return 1.0. Make sure that if it gets called in future, it is trapped.
* Move more constants into static variablesSiddhesh Poyarekar2013-01-021-0/+12
| | | | Code cleanup.
* Fix ChangeLog entrySiddhesh Poyarekar2013-01-021-1/+1
|
* Update Catalan translations.David S. Miller2013-01-011-0/+4
| | | | * po/ca.po: Update from translation team.
* Add script to update copyright notices and reformat some to facilitate its use.Joseph Myers2013-01-011-0/+108
|
* Update French translation.David S. Miller2013-01-011-0/+2
| | | | * po/fr.po: Update from translation team.
* Update copyright years.David S. Miller2013-01-011-0/+25
| | | | | | | | | | | | | | | | | | | | | | | | | * catgets/gencat.c: Update copyright year. * csu/version.c: Likewise. * debug/catchsegv.sh: Likewise. * debug/pcprofiledump.c: Likewise. * debug/xtrace.sh: Likewise. * elf/ldconfig.c: Likewise. * elf/ldd.bash.in: Likewise. * elf/pldd.c: Likewise. * elf/sotruss.ksh: Likewise. * elf/sprof.c: Likewise. * iconv/iconv_prog.c: Likewise. * iconv/iconvconfig.c: Likewise. * locale/programs/locale.c: Likewise. * locale/programs/localedef.c: Likewise. * login/programs/pt_chown.c: Likewise. * malloc/memusage.sh: Likewise. * malloc/memusagestat.c: Likewise. * malloc/mtrace.pl: Likewise. * nscd/nscd.c: Likewise. * nss/getent.c: Likewise. * nss/makedb.c: Likewise. * posix/getconf.c: Likewise.
* Favour normal numbersSiddhesh Poyarekar2012-12-311-0/+5
|
* math: use existing nonnull attribute defineMike Frysinger2012-12-301-0/+4
| | | | Signed-off-by: Mike Frysinger <vapier@gentoo.org>
* Demystify the magic number 134217729.0Siddhesh Poyarekar2012-12-291-0/+10
| | | | | The number 134217729.0 gets used in various places in e_pow.c but there is no explanation of what that number is. Add that explanation.
* Remove unnecessary variable mptwoim1Siddhesh Poyarekar2012-12-281-0/+4
| | | | Code cleanup.
* Replace more constants with their valuesSiddhesh Poyarekar2012-12-281-0/+9
| | | | Code cleanup.
* ChangeLog: add missing typoPino Toscano2012-12-281-1/+1
|
* Add values from Linux 3.7 to <elf.h>Andreas Jaeger2012-12-281-0/+3
|
* Add new defines from Linux 3.7 to <netinet/tcp.h>Andreas Jaeger2012-12-281-0/+5
|
* Add __glibc_likely as an alias for __builtin_expect when availableSiddhesh Poyarekar2012-12-281-0/+3
|
* Replace constants with preprocessor definesSiddhesh Poyarekar2012-12-281-0/+10
| | | | libm Code cleanup.
* BZ#14317: Optimze __xpg_strerror_r2012-12-27 Bruno Haible2012-12-271-0/+6
| | | | | | [BZ #14317] * string/xpg-strerror.c (__xpg_strerror_r): Optimize, call strlen only if needed.
* Remove redundant __mpexp_nnSiddhesh Poyarekar2012-12-271-0/+4
| | | | It's an array that stores integral float values of the offset.
* Move mpone out to a global constSiddhesh Poyarekar2012-12-271-0/+15
| | | | Code cleanup.
* Open development for 2.18. glibc-2.17.90David S. Miller2012-12-251-0/+6
| | | | | | * version.h (RELEASE): Set to "development". (VERSION): Set to "2.17.90". * NEWS: Add 2.18 section.
* Update Croatian translations.David S. Miller2012-12-211-0/+4
| | | | * po/hr.po: Update from translation team.
* S/390: Update libm-test-ulps.Andreas Krebbel2012-12-211-0/+4
|
* Remove trailing space.Steve Ellcey2012-12-191-1/+1
|
* 2012-12-19 Steve Ellcey <sellcey@mips.com>Steve Ellcey2012-12-191-0/+4
| | | | * NEWS: Mention new memcpy for MIPS.
* Fix AArch64 typo.Marcus Shawcroft2012-12-181-0/+4
|
* Update Russian translations.David S. Miller2012-12-151-0/+4
| | | | * po/ru.po: Update from translation team.
* Mention IFUNC enhancements to testsuite in NEWS.David S. Miller2012-12-131-0/+2
| | | | * NEWS: Mention IFUNC testsuite enhancements.
* Update Polish and Bulgarian translations.David S. Miller2012-12-131-0/+3
| | | | | * po/pl.po: Update from translation team. * po/bg.po: Likewise.
* Update manual/contrib.texiDavid S. Miller2012-12-131-0/+5
| | | | | * manual/contrib.texi (Contributors): Update entries for Hongjiu Lu and Joseph S. Myers. Add entry for Marcus Shawcroft.
* Update Swedish translations.David S. Miller2012-12-121-0/+2
| | | | * po/sv.po: Update from translation team.
* Update Vietnamese translations.David S. Miller2012-12-121-0/+2
| | | | * po/vi.po: Update from translation team.
* Update Czech PO file.David S. Miller2012-12-111-0/+2
| | | | * po/cs.po: Update from translation team.
* Update German, Dutch, and Esperanto translations.David S. Miller2012-12-111-0/+6
| | | | | | * po/de.po: Update from translation team. * po/eo.po: Likewise. * po/nl.po: Likewise.
* Move node Argp Helper Functions to follow Argp Parsing StateSiddhesh Poyarekar2012-12-111-0/+4
| | | | Resolves BZ #14246.
* Mention if terminating null is included in NAME_MAX/PATH_MAXSiddhesh Poyarekar2012-12-111-0/+6
| | | | Fixes BZ #14872.
* Update cs translationsAndreas Jaeger2012-12-101-0/+4
|
* Mark BZ#10114 as fixed.Richard Henderson2012-12-101-0/+1
|
* Fix some build warnings on s390xSiddhesh Poyarekar2012-12-081-0/+9
|
* Minor ChangeLog formatting fixSiddhesh Poyarekar2012-12-081-1/+1
|
* BZ #14833: message.texi typo fixesBenno Schulenberg2012-12-081-0/+6
|
* [BZ #14898]Andreas Schwab2012-12-071-0/+6
| | | | | * include/link.h (FORCED_DYNAMIC_TLS_OFFSET) [NO_TLS_OFFSET == 0]: Change to -1.
* Update libc.pot in preparation for giving tarball to translation project.David S. Miller2012-12-071-0/+4
| | | | * po/libc.pot: Update.
* soft-fp: Fix used without set warning in _FP_MUL and _FP_DIVRichard Henderson2012-12-071-0/+6
| | | | | | | | | | | | | Seen in, e.g. ports/sysdeps/alpha/soft-fp/ots_mul.c. The problem here is we have a switch on the class of X*Y, followed by a switch on the class of R. The exponent field of R really is not set by the first switch for NaN outputs, because we know it's not going to be used. The compiler is not smart enough to see through this. By pulling the exponent computation out of the NORMAL*NORMAL path, we will not be pessimizing the most common case, while still providing an arbitrary value to satisfy the compiler.
* linux: posix_fadvise: support __NR_fadvise64_64Mike Frysinger2012-12-061-0/+6
| | | | | | | | Some arches do not have a __NR_fadvise64 but do have __NR_fadvise64_64. If the former is unavailable, fallback to the latter. Reviewed-by: Carlos O'Donell <carlos@systemhalted.org> Signed-off-by: Mike Frysinger <vapier@gentoo.org>
* Fix warnings from generic _FPU_GETCWChris Metcalf2012-12-061-0/+7
|
* Change sources.redhat.com references to sourceware.org.Joseph Myers2012-12-061-0/+4
|
* Fix the order of my ChangeLog entriesSiddhesh Poyarekar2012-12-061-3/+3
|