aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2012-05-06Fix exp10 inaccuracy and exceptions (bugs 13884, 13914).Joseph Myers11-62/+255
2012-05-06Fix libm-test.inc ulps calculation for subnormals (bug 14064).Joseph Myers3-3/+10
2012-05-06Patch 31dc8730af585d8e13021484752fb20decae0661 fixes BZ#13563Andreas Jaeger2-8/+9
Update NEWS and ChangeLog with BZ #13563
2012-05-06Update x86-64 libm-test-ulpsAndreas Jaeger2-0/+14
2012-05-06Fix dateAndreas Jaeger1-1/+1
2012-05-06Build glibc with -frounding-mathAndreas Jaeger2-1/+12
* Makeconfig (+math-flags): New, set to -frounding-math. (+cflags): Add +math-flags so that all of glibc gets compiled with it.
2012-05-05Disable one hypot test for inline double testing.Joseph Myers2-1/+4
2012-05-05Fix missing exceptions from exp (bugs 13787, 13922, 14036).Joseph Myers8-64/+87
2012-05-05Use .S sources for x86/x86_64 expl.Joseph Myers5-79/+188
2012-05-05Remove overridden entries from sysdeps/unix/sysv/syscalls.list.Joseph Myers2-6/+9
2012-05-04Merge sysdeps/unix/common into sysdeps/unix.Joseph Myers5-21/+31
2012-05-04Move x86-64 abilist files to 64/nptlH.J. Lu14-0/+45
2012-05-04Remove unused sysdeps/unix/common/bits/ headers.Joseph Myers3-151/+3
2012-05-04Remove unused sysdeps/unix/bsd/ files.Joseph Myers8-557/+10
2012-05-04ChangeLog leading tabification.Roland McGrath1-6/+6
2012-05-04ChangeLog formatting nit.Roland McGrath1-1/+1
2012-05-04Revert "Do not build manual in the source directory"Andreas Jaeger5-109/+94
This reverts commit e3945c47bdac1149a1fec5d46bd567a248cd17b9. reverting since it breaks building.
2012-05-04Revert "Update install.texi for building manual in build dir"Andreas Jaeger2-6/+4
This reverts commit 0d80ac6813e3bf21fad6d87202e9efe6d0c17a82. Reverting since e3945c47bdac1149a1fec5d46bd567a248cd17b9 gets reverted as well.
2012-05-04Update install.texi for building manual in build dirAndreas Jaeger2-4/+6
2012-05-04Do not build manual in the source directoryAndreas Jaeger5-94/+109
[BZ #13750] Build the manual in the build directory and not anymore in the source directory.
2012-05-04Fix for ldbl-128ibm acosl/asinl inaccuraciesAdhemerval Zanella4-40/+186
2012-05-02 Adhemerval Zanella <azanella@linux.vnet.ibm.com> * sysdeps/ieee754/ldbl-128ibm/e_acosl.c (__ieee754_acosl): Fix long double comparison inaccuracies. * sysdeps/ieee754/ldbl-128ibm/e_asinl.c (__ieee754_asinl): * Likewise. * sysdeps/powerpc/fpu/libm-test-ulps: Update.
2012-05-04Fix missing vm86 symbolAndreas Schwab3-15/+21
2012-05-04Fix strtod rounding of hex values (bug 14049).Joseph Myers4-5/+28
2012-05-04Update s390 libm-test-ulpsAndreas Krebbel2-134/+1415
2012-05-03Fix tst-obprintf - and mcheck in generalAndreas Jaeger2-0/+12
tst-obprintf failed with GCC 4.7. It turned out that this is the fault of GCC optimizing away the following from malloc/mcheck.c: /* We call malloc() once here to ensure it is initialized. */ void *p = malloc (0); free (p); gcc sees the malloc(0);free pair and removes it completely. And now malloc is not properly initialized and we screw up if both mcheck is used (via tst-obprintf) and MALLOC_CHECK_ is set (as it is in my environment).
2012-05-03Do not delete make check-abi symlist filesAndreas Jaeger2-0/+14
Do not remove the .symlist files and thus do not run objdump for each library etc if you repeat the make check command.
2012-05-03Fix minor fallout from yesterdays sparc nptl changes.David S. Miller5-4/+15
nptl/ * sysdeps/sparc/sparc64/pthread_spin_unlock.S: Fix thinko, we always have to return 0, especially for the pthread_spin_init alias. * sysdeps/sparc/sparc32/pthread_spin_lock.S: Add missing trailing newline. * sysdeps/sparc/sparc32/sparcv9/pthread_spin_lock.S: Likewise. * sysdeps/sparc/sparc64/pthread_spin_lock.S: Likewise.
2012-05-03Fix conditions on checking versions of dprintf (bug 13775).Joseph Myers4-28/+54
2012-05-03Fix make clean for recent elf/Makefile changes.Roland McGrath2-3/+9
2012-05-03Update sysdeps/i386/fpu/libm-test-ulpsAndreas Jaeger2-0/+77
2012-05-03Move FAQ to wikiAndreas Jaeger6-3828/+15
The FAQ is now at http://sourceware.org/glibc/wiki/FAQ and not anymore part of the repository.
2012-05-02Mirror i386 change on sparc: 'Avoid "anonymous" code in pthread_spin_lock'David S. Miller15-139/+104
nptl/ * sysdeps/sparc/sparc64/pthread_spin_lock.S: New. * sysdeps/sparc/sparc64/pthread_spin_lock.c: Delete. * sysdeps/sparc/sparc64/pthread_spin_unlock.S: New. * sysdeps/sparc/sparc64/pthread_spin_unlock.c: Delete. * sysdeps/sparc/sparc64/pthread_spin_trylock.S: New. * sysdeps/sparc/sparc64/pthread_spin_trylock.c: Delete. * sysdeps/sparc/sparc64/pthread_spin_init.c: New. * sysdeps/sparc/sparc32/pthread_spin_lock.S: New. * sysdeps/sparc/sparc32/pthread_spin_lock.c: Delete. * sysdeps/sparc/sparc32/pthread_spin_trylock.S: New. * sysdeps/sparc/sparc32/pthread_spin_trylock.c: Delete. * sysdeps/sparc/sparc32/sparcv9/pthread_spin_lock.S: New. * sysdeps/sparc/sparc32/sparcv9/pthread_spin_lock.c: Delete. * sysdeps/sparc/sparc32/sparcv9/pthread_spin_trylock.S: New. * sysdeps/sparc/sparc32/sparcv9/pthread_spin_trylock.c: Delete. * sysdeps/sparc/sparc32/sparcv9/pthread_spin_unlock.S: New. * sysdeps/sparc/sparc32/sparcv9/pthread_spin_unlock.c: Delete. * sysdeps/sparc/sparc32/sparcv9/pthread_spin_init.c: New.
2012-05-02Fix test-suite failues with -Wl,--as-neededAllan McRae5-2/+52
Signed-off-by: Allan McRae <allan@archlinux.org>
2012-05-02Update sparc ULPs for recently added acos/asin tests.David S. Miller2-0/+104
* sysdeps/sparc/fpu/libm-test-ulps: Update.
2012-05-02For PR 14055, add bounds check to _dl_show_auxv().Paul Pluzhnikov3-3/+10
2012-05-02Kill trailing whitespace.Paul Pluzhnikov1-1/+1
2012-05-02Avoid "anonymous" code in pthread_spin_lock.Paul Pluzhnikov4-33/+64
2012-05-02Use -frounding-math for math testsuiteAndreas Jaeger2-6/+20
We should tell GCC that we manipulate the rounding mode and therefore add -frounding-math to these files that call fesetround.
2012-05-02Fix nexttoward bugsAdhemerval Zanella2-10/+9
[BZ #2550] [BZ #2570] * sysdeps/ieee754/ldbl-128ibm/s_nexttoward.c: Use floating-point comparisons to determine direction to adjust input.
2012-05-01Redirect check-localplt output to check-localplt.out.Roland McGrath2-1/+5
2012-05-01Do check-localplt test using readelf rather than a build-time C program.Roland McGrath4-312/+90
2012-05-01Do check-execstack test using readelf rather than a build-time C program.Roland McGrath4-177/+88
2012-05-01Do check-textrel test using readelf rather than a build-time C program.Roland McGrath5-209/+70
2012-05-01conformtest: Update expectations for some ISO C headers.Joseph Myers7-146/+322
2012-05-01conformtest: Check namespace within __attribute__.Joseph Myers2-2/+7
2012-05-01conformtest: Use correct keyword set for underlying C standard.Joseph Myers2-2/+8
2012-05-01conformtest: Don't test non-C90 headers for C90.Joseph Myers3-0/+9
2012-05-01conformtest: Support testing macro usability in #if.Joseph Myers2-2/+42
2012-05-01conformtest: Support specifying types before promotion.Joseph Myers2-1/+10
2012-05-01conformtest: Unify "macro" and "constant" handling.Joseph Myers2-64/+53