Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add <sys/auxv.h> and getauxval. | Richard Henderson | 2012-05-20 | 24 | -61/+326 |
| | |||||
* | Update powerpc ULPs for ccos, csin, ccosh, csinh tests. | Adhemerval Zanella | 2012-05-19 | 2 | -0/+160 |
| | |||||
* | Update sparc ULPs for ccos, csin, ccosh, csinh tests. | David S. Miller | 2012-05-19 | 2 | -0/+294 |
| | |||||
* | Fix ccos, csin, ccosh, csinh overflows (bug 14123). | Joseph Myers | 2012-05-19 | 14 | -64/+801 |
| | |||||
* | Add 64-bit preadv.c and pwritev.c | H.J. Lu | 2012-05-19 | 3 | -0/+149 |
| | |||||
* | Add a comment to sysdeps/x86_64/x32/_itoa.h | H.J. Lu | 2012-05-19 | 2 | -0/+5 |
| | |||||
* | Use __syscall_slong_t in bits/timex.h | H.J. Lu | 2012-05-19 | 2 | -23/+29 |
| | |||||
* | Remove sysdeps/powerpc/soft-fp. | Joseph Myers | 2012-05-19 | 32 | -1182/+34 |
| | |||||
* | Delete unused csu/.gitignore | Andreas Jaeger | 2012-05-19 | 2 | -1/+4 |
| | |||||
* | Fix INSTALL description for modified files in source dir | Andreas Jaeger | 2012-05-18 | 3 | -4/+11 |
| | |||||
* | Use RAX_LP and "or" to operate on return value | H.J. Lu | 2012-05-18 | 3 | -5/+12 |
| | |||||
* | [PowerPC] Remove -ftree-loop-linear from Makefiles | Tulio Magno Quites Machado Filho | 2012-05-18 | 5 | -6/+18 |
| | | | | | | | | | | | | | | | | In the past the "-ftree-loop-linear" switch provided a measurable improvement in performance for certain functions. At some point it was assigned as the responsibility of Graphite in GCC. It has been found that even with Graphite enabled these flags no longer perform any appreciable improvement over the baseline. Graphite now has some open bugs which need to be fixed in order for it to provide measurable performance improvements but it lacks active development. As a result some compiler distributors may disable Graphite. If Graphite is disabled then building GLIBC will fail if the "-ftree-loop-linear" switch is used. This patch removes the use of "-ftree-loop-linear" as unnecessary. | ||||
* | Add sysdeps/x86_64/x32/_itoa.h | H.J. Lu | 2012-05-18 | 2 | -0/+5 |
| | |||||
* | Check d_ino/d_off before using getdents syscall | H.J. Lu | 2012-05-18 | 2 | -3/+16 |
| | |||||
* | Check _ITOA_NEEDED and use _ITOA_WORD_TYPE | H.J. Lu | 2012-05-18 | 2 | -5/+11 |
| | |||||
* | Fold copyright years | H.J. Lu | 2012-05-18 | 5 | -4/+10 |
| | |||||
* | Add x32 support to x86_64/bits/sigcontext.h | H.J. Lu | 2012-05-18 | 2 | -30/+38 |
| | |||||
* | Use anonymous union in x86_64/sys/user.h | H.J. Lu | 2012-05-18 | 2 | -8/+15 |
| | |||||
* | Avoid runtime GOT relocations in ld.so on powerpc | Andreas Schwab | 2012-05-18 | 8 | -17/+53 |
| | |||||
* | Fix undefined reference to _dl_prof_resolve in profiled libc | Andreas Schwab | 2012-05-18 | 2 | -4/+15 |
| | |||||
* | Do not provide inlines for GCC build-in functions | Andreas Jaeger | 2012-05-18 | 2 | -2/+26 |
| | |||||
* | Use __syscall_ulong_t in pselect.c | H.J. Lu | 2012-05-17 | 2 | -4/+7 |
| | |||||
* | Add __fsword_t and use it in bits/statfs.h | H.J. Lu | 2012-05-17 | 9 | -12/+38 |
| | |||||
* | Bump sha512c-test.c timeout for the sake of 32-bit sparc. | David S. Miller | 2012-05-17 | 2 | -1/+5 |
| | | | | * crypt/sha512c-test.c (TIMEOUT): Increase to 32. | ||||
* | Fix warning | Andreas Jaeger | 2012-05-17 | 2 | -1/+6 |
| | | | | | | Fixes: tst-relsort1.c:6:1: warning: function declaration isn’t a prototype [-Wstrict-prototypes] | ||||
* | Cast to unsigned long | H.J. Lu | 2012-05-17 | 2 | -1/+5 |
| | |||||
* | Fix warnings on Linux/i686 | Andreas Jaeger | 2012-05-17 | 4 | -5/+16 |
| | | | | | | Fixes: ../sysdeps/i386/dl-machine.h:336:30: warning: unused variable ‘refsym’ [-Wunused-variable] rtld.c:1435:3: warning: implicit declaration of function ‘_dl_discover_osversion’ [-Wimplicit-function-declaration] | ||||
* | Bump up stdio bug22 timeout from 30 seconds to 60 seconds | Chris Metcalf | 2012-05-17 | 2 | -1/+5 |
| | | | | | The older Tilera platform (tilepro) needs just a hair over 30 seconds to run this on one core. | ||||
* | Add tst-mallocalign1 | H.J. Lu | 2012-05-17 | 3 | -0/+81 |
| | |||||
* | BZ#14059: Fix AVX and FMA4 detection. | Carlos O'Donell | 2012-05-17 | 9 | -31/+181 |
| | | | | | Fix AVX and FMA4 detection by following the guidelines set out by Intel and AMD for detecting these features. | ||||
* | math: support platforms with limited FP rounding or exception support | Chris Metcalf | 2012-05-17 | 7 | -0/+53 |
| | | | | | | | | | | | For some tests, just claim that fetestexcept() always returns true, so the rest of the test can be compiled. For libm-test, provide known bogus values for unsupported rounding modes, so fesetround() will return failure. Elsewhere, just add some #ifdefs to avoid code that uses particular FP exceptions if the exceptions aren't supported. | ||||
* | Avoid compiler warnings in qsort/bsearch examples | Andreas Jaeger | 2012-05-17 | 3 | -3/+18 |
| | |||||
* | Fold copyright years | H.J. Lu | 2012-05-16 | 8 | -9/+17 |
| | |||||
* | For [BZ #208], accumulate malloc stats over all arenas. | Paul Pluzhnikov | 2012-05-16 | 3 | -38/+59 |
| | |||||
* | BZ#10375: Configure magic to use -fno-stack-protector if needed. | Roland McGrath | 2012-05-16 | 6 | -15/+198 |
| | |||||
* | BZ#10375: Configure magic to use -U_FORTIFY_SOURCE if needed. | Roland McGrath | 2012-05-16 | 7 | -7/+67 |
| | |||||
* | Remove redundant ChangeLog header lines. | Roland McGrath | 2012-05-16 | 1 | -30/+0 |
| | |||||
* | Use __syscall_slong_t in bits/mqueue.h | H.J. Lu | 2012-05-16 | 2 | -6/+13 |
| | |||||
* | Add x32 suppport to x86_64/bits/stat.h | H.J. Lu | 2012-05-16 | 2 | -21/+30 |
| | |||||
* | Add x86-64 bits/typesizes.h | H.J. Lu | 2012-05-16 | 2 | -0/+78 |
| | |||||
* | Add x86_64/bits/ipctypes.h | H.J. Lu | 2012-05-16 | 2 | -0/+37 |
| | |||||
* | Use __syscall_ulong_t in bits/ipc.h | H.J. Lu | 2012-05-16 | 2 | -3/+8 |
| | |||||
* | Add x32 support to sys/ucontext.h | H.J. Lu | 2012-05-16 | 2 | -7/+15 |
| | |||||
* | Add x32 support to <sys/user.h> | H.J. Lu | 2012-05-16 | 2 | -42/+56 |
| | |||||
* | Add x32 gmp-mparam.h | H.J. Lu | 2012-05-16 | 2 | -0/+37 |
| | |||||
* | Add x32 ffs | H.J. Lu | 2012-05-16 | 2 | -0/+8 |
| | |||||
* | Update Texinfo version requirement. | Joseph Myers | 2012-05-16 | 5 | -11/+18 |
| | |||||
* | Update __STDC_ISO_10646__. | Joseph Myers | 2012-05-16 | 2 | -2/+7 |
| | |||||
* | Add x32 support to x86_64/bits/shm.h | H.J. Lu | 2012-05-16 | 2 | -22/+30 |
| | |||||
* | Add x32 support to x86_64/bits/sem.h | H.J. Lu | 2012-05-16 | 2 | -6/+11 |
| |