From 8ae5e888088b1036f200cd91c701e6beded9b221 Mon Sep 17 00:00:00 2001 From: Joakim Tjernlund Date: Sat, 27 Aug 2005 11:41:56 +0000 Subject: asierllano writes in bug 370: The gcc compiler has deprecated the type __uint128 for 32-bits platforms. Due to the fact that this type was introduced in gcc-3.1 it is better to drop its use. (glibc has the same problem and uses this same solution). --- libc/sysdeps/linux/powerpc/sys/procfs.h | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) (limited to 'libc') diff --git a/libc/sysdeps/linux/powerpc/sys/procfs.h b/libc/sysdeps/linux/powerpc/sys/procfs.h index f2424889e..ff85f09f9 100644 --- a/libc/sysdeps/linux/powerpc/sys/procfs.h +++ b/libc/sysdeps/linux/powerpc/sys/procfs.h @@ -42,15 +42,10 @@ typedef elf_greg_t elf_gregset_t[ELF_NGREG]; typedef double elf_fpreg_t; typedef elf_fpreg_t elf_fpregset_t[ELF_NFPREG]; -/* gcc 3.1 and newer support __uint128_t. */ -#if !__GNUC_PREREQ(3,1) -typedef struct { - unsigned long u[4]; -} __attribute((aligned(16))) __uint128_t; -#endif - /* Altivec registers */ -typedef __uint128_t elf_vrreg_t; +typedef struct { + unsigned int u[4]; +} __attribute((aligned (16))) elf_vrreg_t; typedef elf_vrreg_t elf_vrregset_t[ELF_NVRREG]; struct elf_siginfo -- cgit v1.2.3