mirror of git://sourceware.org/git/glibc.git
Update.
* sysdeps/unix/sysv/linux/powerpc/sys/procfs.h: GCC 3.1 has __uint128_t build-in.
This commit is contained in:
parent
38aaf87677
commit
d425aefc71
|
|
@ -1,5 +1,8 @@
|
||||||
2002-01-17 Andreas Jaeger <aj@suse.de>
|
2002-01-17 Andreas Jaeger <aj@suse.de>
|
||||||
|
|
||||||
|
* sysdeps/unix/sysv/linux/powerpc/sys/procfs.h: GCC 3.1 has
|
||||||
|
__uint128_t build-in.
|
||||||
|
|
||||||
* sysdeps/unix/sysv/linux/configure.in: Fix check for S390 and
|
* sysdeps/unix/sysv/linux/configure.in: Fix check for S390 and
|
||||||
PowerPC, sync with 2.2 branch.
|
PowerPC, sync with 2.2 branch.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
/* Copyright (C) 1996, 1997, 1999 Free Software Foundation, Inc.
|
/* Copyright (C) 1996, 1997, 1999, 2002 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
|
|
@ -42,10 +42,8 @@ typedef elf_greg_t elf_gregset_t[ELF_NGREG];
|
||||||
typedef double elf_fpreg_t;
|
typedef double elf_fpreg_t;
|
||||||
typedef elf_fpreg_t elf_fpregset_t[ELF_NFPREG];
|
typedef elf_fpreg_t elf_fpregset_t[ELF_NFPREG];
|
||||||
|
|
||||||
/* gcc doesn't support __TI__ yet */
|
/* gcc 3.1 and newer support __uint128_t. */
|
||||||
#if 0
|
#if !__GNUC_PREREQ(3,1)
|
||||||
typedef unsigned __uint128_t __attribute__ (( __mode__ (__TI__)));
|
|
||||||
#else
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
unsigned long u[4];
|
unsigned long u[4];
|
||||||
} __attribute((aligned(16))) __uint128_t;
|
} __attribute((aligned(16))) __uint128_t;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue