aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2013-10-10Add soft-fp files from libgcc.Joseph Myers15-0/+663
2013-10-10Update sparc ULPs.David S. Miller2-0/+129
* sysdeps/sparc/fpu/libm-test-ulps: Update.
2013-10-10Extend powerpc-nofpu -fno-builtin-fabsl workaround to more files.Joseph Myers2-0/+14
2013-10-10Avoid ordered comparisons of NaNs in ldbl-128ibm acosl and asinl.Joseph Myers3-0/+11
2013-10-10malloc/hooks.c: Correct check for overflow in memalign_check.Will Newton2-4/+12
A large value of bytes passed to memalign_check can cause an integer overflow in _int_memalign and heap corruption. This issue can be exposed by running tst-memalign with MALLOC_CHECK_=3. ChangeLog: 2013-10-10 Will Newton <will.newton@linaro.org> * malloc/hooks.c (memalign_check): Ensure the value of bytes passed to _int_memalign does not overflow.
2013-10-10benchtests: Add include-sources directive.Torvald Riegel3-6/+28
This adds the "include-sources" directive to scripts/bench.pl. This allows for including source code (vs including headers, which might get a different search path) after the inclusion of any headers.
2013-10-10soft-fp: split FP_INIT_EXCEPTIONS from FP_INIT_ROUNDMODE.Joseph Myers5-3/+17
2013-10-10soft-fp: fix negation NaN handling (bug 16034).Joseph Myers7-24/+21
2013-10-09soft-fp: Remove trailing semicolon from _FP_FRAC_DISASSEMBLE_4.Joseph Myers2-1/+6
2013-10-09soft-fp: fix typo in comment.Adam Buchbinder2-1/+5
2013-10-08Update gethostbyname2_r documentation. Fixes bug #156.Yogesh Chaudhari3-10/+18
2013-10-08Fix typo in last changeAndreas Schwab1-1/+1
2013-10-08m68k: use PIC for Scrt1.oAndreas Schwab2-0/+25
2013-10-08Use p2align instead ALIGNOndřej Bílka10-323/+301
2013-10-08correct LC_TELEPHONE for pap localesChris Leonard3-6/+12
2013-10-08Format e_pow.cSiddhesh Poyarekar2-260/+315
2013-10-08Format e_exp.cSiddhesh Poyarekar2-164/+244
2013-10-08Consolidate multiple precision sin/cos functionsSiddhesh Poyarekar4-129/+140
2013-10-08Clean up locale file alignment handling.Joseph Myers6-7/+22
2013-10-07Fixes to Changelog for locale splitsChris Leonard1-0/+12
2013-10-07Fix up ChangeLog formatting.Roland McGrath1-19/+19
2013-10-07remove localdata path from Changelog entriesChris Leonard1-17/+17
2013-10-07Fix ar_SS in SUPPORTEDChris Leonard1-1/+1
2013-10-07Fix ChangeLog formattingSiddhesh Poyarekar1-1/+1
2013-10-07Add more directives to benchmark input filesSiddhesh Poyarekar20-131/+160
This patch adds some more directives to the benchmark inputs file, moving functionality from the Makefile and making the code generation script a bit cleaner. The function argument and return types that were earlier added as variables in the makefile and passed to the script via command line arguments are now the 'args' and 'ret' directive respectively. 'args' should be a colon separated list of argument types (skipped if the function doesn't accept any arguments) and 'ret' should be the return type. Additionally, an 'includes' directive may have a comma separated list of headers to include in the source. For example, the pow input file now looks like this: 42.0, 42.0 1.0000000000000020, 1.5 I did this to unclutter the benchtests Makefile a bit and eventually eliminate dependency of the tests on the Makefile and have tests depend on their respective include files only.
2013-10-07Fix careless merge.Alan Modra2-1/+5
2013-10-05Adjust language-code fields of LC_ADDRESS.Chris Leonard18-19/+97
2013-10-05Mention powerpc64le support in NEWS and README, plus bugs fixed.Alan Modra3-7/+14
* NEWS: Mention powerpc64le support and bugs fixed. * README: Both big-endian and little-endian powerpc64 supported.
2013-10-05nptl: tst-mutex8.c: Handle ENOTSUP PI mutex failureMaciej W. Rozycki2-2/+15
2013-10-04Fix typos in 3166.def.Chris Leonard1-1/+1
2013-10-04Add fork hooks for pthread_atforkSamuel Thibault2-0/+22
pthread_atfork needs application callbacks to be called outside any locking.
2013-10-04Update generic swapon definition to match prototype.Ryan S. Arnold2-2/+6
2013-10-04Move powerpc ports pieces to libc.Joseph Myers65-10/+71
2013-10-04e500 port: adjust sysdeps/unix/sysv/linux/configure.in case.Joseph Myers3-2/+6
2013-10-04e500 port: fix fpu_control.h constant values.Joseph Myers2-10/+17
2013-10-04e500 port: getcontext / setcontext / swapcontext.Joseph Myers9-0/+190
2013-10-04Correct error in iso-3166.defChris Leonard1-1/+1
2013-10-04Copy / modify pap_AN into pap_AW and pap_CW.Chris Leonard5-7/+360
2013-10-04Split ar_SD into ar_SD and ar_SSChris Leonard2-2/+244
2013-10-04Update iso-1366.def and related occurrencesChris Leonard2-3/+13
2013-10-04Fix typo in manualSiddhesh Poyarekar2-1/+5
2013-10-04ARM: Allow building __sigsetjmp as Thumb.Will Newton2-3/+5
Convert __sigsetjmp code to allow building as Thumb. ports/ChangeLog.arm: 2013-10-04 Will Newton <will.newton@linaro.org> * sysdeps/arm/setjmp.S (NO_THUMB): Remove define. (__sigsetjmp): Use Thumb supported instructions.
2013-10-04ARM: Allow building __longjmp as Thumb.Will Newton3-5/+10
Convert __longjmp code to allow building as Thumb. ports/ChangeLog.arm: 2013-10-04 Will Newton <will.newton@linaro.org> * sysdeps/arm/__longjmp.S (NO_THUMB): Remove define. (__longjmp): Use Thumb supported instructions. * sysdeps/unix/sysv/linux/arm/____longjmp_chk.S (NO_THUMB): Remove define.
2013-10-04malloc/tst-valloc.c: Tidy up code.Will Newton2-6/+19
Add some comments and call free on all potentially allocated pointers. Also remove duplicate check for NULL pointer. ChangeLog: 2013-10-04 Will Newton <will.newton@linaro.org> * malloc/tst-valloc.c: Add comments. (do_test): Add comments and call free on all potentially allocated pointers. Remove duplicate check for NULL pointer. Add space after cast.
2013-10-04malloc/tst-pvalloc.c: Tidy up code.Will Newton2-6/+19
Add some comments and call free on all potentially allocated pointers. Also remove duplicate check for NULL pointer. ChangeLog: 2013-10-04 Will Newton <will.newton@linaro.org> * malloc/tst-pvalloc.c: Add comments. (do_test): Add comments and call free on all potentially allocated pointers. Remove duplicate check for NULL pointer. Add space after cast.
2013-10-04malloc/tst-posix_memalign.c: Tidy up code.Will Newton2-4/+18
Add some comments and call free on all potentially allocated pointers. ChangeLog: 2013-10-04 Will Newton <will.newton@linaro.org> * malloc/tst-posix_memalign.c: Add comments. (do_test): Add comments and call free on all potentially allocated pointers. Add space after cast.
2013-10-04malloc: Add memalign test.Will Newton3-1/+105
ChangeLog: 2013-10-04 Will Newton <will.newton@linaro.org> * malloc/Makefile: Add tst-memalign. * malloc/tst-memalign.c: New file.
2013-10-04Use stdint.h types in union unaligned.Alan Modra3-6/+12
* sysdeps/powerpc/powerpc32/dl-machine.c (__process_machine_rela): Use stdint types in rather than __attribute__((mode())). * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela): Likewise.
2013-10-04Correct little-endian relocation of UADDR64,32,16.Alan Modra3-24/+24
* sysdeps/powerpc/powerpc32/dl-machine.c (__process_machine_rela): Correct handling of unaligned relocs for little-endian. * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela): Likewise.
2013-10-04fix changelog dateAlan Modra1-1/+1