Skip to content

Commit

Permalink
2005-02-21 Alan Modra <amodra@bigpond.net.au>
Browse files Browse the repository at this point in the history
	* sysdeps/unix/sysv/linux/powerpc/sys/procfs.h (elf_vrreg_t): Don't
	use __uint128_t.
  • Loading branch information
Roland McGrath committed Mar 2, 2005
1 parent 95ca9dd commit 04c8bd4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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
Expand Down
11 changes: 3 additions & 8 deletions sysdeps/unix/sysv/linux/powerpc/sys/procfs.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 04c8bd4

Please sign in to comment.