]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
2005-02-21 Alan Modra <amodra@bigpond.net.au>
authorRoland McGrath <roland@gnu.org>
Wed, 2 Mar 2005 20:11:55 +0000 (20:11 +0000)
committerRoland McGrath <roland@gnu.org>
Wed, 2 Mar 2005 20:11:55 +0000 (20:11 +0000)
* sysdeps/unix/sysv/linux/powerpc/sys/procfs.h (elf_vrreg_t): Don't
use __uint128_t.

ChangeLog
sysdeps/unix/sysv/linux/powerpc/sys/procfs.h

index f7e66a6dd06ba40c9a721bca0487f50ce6f6a0bb..73fda7b0501b0e1a6ab8f9b3f66528039b3c240f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-02-21  Alan Modra <amodra@bigpond.net.au>
+
+       * sysdeps/unix/sysv/linux/powerpc/sys/procfs.h (elf_vrreg_t): Don't
+       use __uint128_t.
+
 2005-03-01  Jakub Jelinek  <jakub@redhat.com>
 
        * posix/bits/unistd.h (read, pread, pread64): Use __bos0 instead
index 8e694c2ad35bd558a34c73afaf857330f7c0a686..bb9a08b3f6bb22e5f66246e0934df23662914b0a 100644 (file)
@@ -46,15 +46,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];
 #endif