]> git.pld-linux.org Git - packages/glibc.git/blame - glibc-no_uint128_t.patch
- fixed bogus localedb Group, iconv Group and pl desc
[packages/glibc.git] / glibc-no_uint128_t.patch
CommitLineData
9a9bf757
MM
1===================================================================
2RCS file: /cvs/glibc/libc/sysdeps/unix/sysv/linux/powerpc/sys/procfs.h,v
3retrieving revision 1.11
4retrieving revision 1.11.2.1
5diff -u -r1.11 -r1.11.2.1
6--- libc/sysdeps/unix/sysv/linux/powerpc/sys/procfs.h 2003/12/17 23:09:34 1.11
7+++ libc/sysdeps/unix/sysv/linux/powerpc/sys/procfs.h 2005/03/03 14:03:17 1.11.2.1
8@@ -46,15 +46,10 @@
9 typedef double elf_fpreg_t;
10 typedef elf_fpreg_t elf_fpregset_t[ELF_NFPREG];
11
12-/* gcc 3.1 and newer support __uint128_t. */
13-#if !__GNUC_PREREQ(3,1)
14-typedef struct {
15- unsigned long u[4];
16-} __attribute((aligned(16))) __uint128_t;
17-#endif
18-
19 /* Altivec registers */
20-typedef __uint128_t elf_vrreg_t;
21+typedef struct {
22+ unsigned int u[4];
23+} __attribute__ ((aligned (16))) elf_vrreg_t;
24 typedef elf_vrreg_t elf_vrregset_t[ELF_NVRREG];
25 #endif
26
This page took 0.034079 seconds and 4 git commands to generate.