about summary refs log tree commit diff
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
...
* Format mpsqrt.cSiddhesh Poyarekar2013-02-271-0/+2
|
* Format mpatan2.cSiddhesh Poyarekar2013-02-271-0/+2
|
* Format mpatan.cSiddhesh Poyarekar2013-02-271-0/+2
|
* Format mptan.cSiddhesh Poyarekar2013-02-271-0/+2
|
* Format mplog.cSiddhesh Poyarekar2013-02-271-0/+4
|
* Fix last change.Roland McGrath2013-02-261-1/+0
|
* Generalize %.v.i rule a bit.Roland McGrath2013-02-261-0/+6
|
* Another tweak to the multiplication algorithmSiddhesh Poyarekar2013-02-261-0/+3
| | | | | Reduce the formula to calculate mantissa so that we reduce the net number of multiplications performed.
* Don't duplicate mpone and mptwoSiddhesh Poyarekar2013-02-261-0/+4
|
* Fix FPE in memusagestat when malloc utilization is zeroSiddhesh Poyarekar2013-02-261-0/+6
| | | | | | | [BZ #15160] Draw graphs for heap and stack only if MAXSIZE_HEAP and MAXSIZE_STACK are non-zero.
* Bring back definition of __attribute__ for non-gcc and older gccPaul Eggert2013-02-261-0/+5
| | | | gnulib copies this file over and needs it.
* Fix some build warningsSiddhesh Poyarekar2013-02-261-0/+15
|
* Remove commented declarationsSiddhesh Poyarekar2013-02-251-0/+4
|
* Use long wherever possible in mpa.cSiddhesh Poyarekar2013-02-251-0/+11
| | | | | | Using long throughout like powerpc does is beneficial since it reduces the need to switch to 32-bit instructions. It gives a very minor performance improvement.
* Format slowexp.cSiddhesh Poyarekar2013-02-251-0/+3
|
* Reformat slowpow.cSiddhesh Poyarekar2013-02-251-0/+3
|
* Remove commented codeSiddhesh Poyarekar2013-02-251-0/+3
|
* Sync up powerpc __mp_dbl with default codeSiddhesh Poyarekar2013-02-251-0/+7
|
* Fix menu ordering in socket.texi.Allan McRae2013-02-241-0/+3
| | | | Match the order of (sub)sections in the menu to that in the file..
* Add @detailmenu to subsection node listingAllan McRae2013-02-241-0/+5
| | | | | | Surround the "Detailed Node Listing" section of the info page menu with @detailmenu flags to avoid confusing texinfo. Resolves a large number of warnings printed by texinfo-5.0.
* Remove remaining bounded-pointers support from i386 .S files.Joseph Myers2013-02-211-0/+346
|
* Move @end statement to start of lineAllan McRae2013-02-211-0/+5
| | | | Fixes a warning with texinfo-5.0.
* Mark __inv as static in powerpcSiddhesh Poyarekar2013-02-211-0/+5
|
* Fix whitespace differences between generic and powerpc mpa.cSiddhesh Poyarekar2013-02-211-0/+7
|
* S/390: Fix _dl_runtime_profile for 32 bit.Andreas Krebbel2013-02-211-0/+5
|
* Mark ZERO inputs to __mul as unlikely on powerpcSiddhesh Poyarekar2013-02-211-0/+7
| | | | Syncs up with generic code.
* manual: Remove frobnicate @pxref.Carlos O'Donell2013-02-201-0/+5
| | | | | | We remove the frobnicate @pxref in the "System Databases and Name Service Switch" chapter. The @pxref doesn't make sense in the given context.
* Respect the user's namespace in installed header files.Thomas Schwinge2013-02-201-0/+5
| | | | Fixup for commit c7b275d6b3bceb6b400fa3044d13d1001bc605ca.
* Add ARM relocation constants to elf/elf.h.Petr Machata2013-02-201-0/+48
|
* bits/nan.h: Change __attribute_used__ to __attribute__ ((unused)).Thomas Schwinge2013-02-201-0/+5
|
* Copy comment about inner loop from powerpc mpa.c to the default oneSiddhesh Poyarekar2013-02-201-0/+8
|
* Remove some bounded-pointers support from i386 .S files.Joseph Myers2013-02-191-0/+106
|
* Merge branch 'master' of ssh://sourceware.org/git/glibcJakub Jelinek2013-02-191-0/+4
|\
| * Fix some testsuite build warning fixes in libmSiddhesh Poyarekar2013-02-191-0/+4
| |
* | * stdlib/strtod_l.c (__mpn_lshift_1): Rewritten as function-likeJakub Jelinek2013-02-191-0/+5
|/ | | | macro.
* Fix copyright year in new filesSiddhesh Poyarekar2013-02-191-0/+6
|
* stdlib.h: use existing malloc/alloc_size attribute definesMike Frysinger2013-02-181-0/+5
| | | | Signed-off-by: Mike Frysinger <vapier@gentoo.org>
* sys/cdefs.h: export __attribute_alloc_size__Mike Frysinger2013-02-181-0/+7
| | | | | | | | Since we want to use this in installed headers, move it to the installed sys/cdefs.h. This requires a slight tweaking of the name (add trailing underscores). Signed-off-by: Mike Frysinger <vapier@gentoo.org>
* unify xmalloc prototypes & friendsMike Frysinger2013-02-181-0/+16
| | | | | | | | These prototypes are duplicated in many places. Add a dedicated header for holding prototypes for program-specific functions to avoid that. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
* Fix ChangeLogsSiddhesh Poyarekar2013-02-181-3/+0
|
* C++11 thread_local destructors supportSiddhesh Poyarekar2013-02-181-0/+33
| | | | | | | | | | | This feature is specifically for the C++ compiler to offload calling thread_local object destructors on thread program exit, to glibc. This is to overcome the possible complication of destructors of thread_local objects getting called after the DSO in which they're defined is unloaded by the dynamic linker. The DSO is marked as 'unloadable' if it has a constructed thread_local object and marked as 'unloadable' again when all the constructed thread_local objects defined in it are destroyed.
* Fix build warnings in some test casesSiddhesh Poyarekar2013-02-181-0/+5
| | | | Include stdlib.h to get declaration of exit(3)
* New function _dl_find_dso_for_objectSiddhesh Poyarekar2013-02-181-0/+9
| | | | Consolidate code to search for an address within a DSO.
* S/390: Fix _dl_runtime_profileAndreas Krebbel2013-02-181-0/+6
|
* Remove bounded-pointers handling from x86_64 assembly sources.Joseph Myers2013-02-171-0/+45
|
* Sort Versions filesAndreas Jaeger2013-02-171-0/+10
|
* Fix ChangeLog date (again)Siddhesh Poyarekar2013-02-161-1/+1
| | | | | I just realized that it's 16-Feb in India, but not in UTC. Make it 15th again.
* Don't require LIM to determine loop end in __sqrSiddhesh Poyarekar2013-02-161-0/+3
|
* Use intermediate variable to compute exponent in __mulSiddhesh Poyarekar2013-02-161-1/+5
|
* Fix determination of lower precision in __mulSiddhesh Poyarekar2013-02-151-0/+5
|