mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-08 14:20:07 +00:00
[AArch64] Fix elf_greg_t on ILP32
Use uint64_t instead of unsigned long.
This commit is contained in:
parent
a6ccdb0839
commit
39e7a5a668
@ -1,3 +1,8 @@
|
||||
2017-08-25 Szabolcs Nagy <szabolcs.nagy@arm.com>
|
||||
|
||||
* sysdeps/unix/sysv/linux/aarch64/sys/procfs.h (elf_greg_t):
|
||||
Use uint64_t instead of unsigned long.
|
||||
|
||||
2017-08-25 Joseph Myers <joseph@codesourcery.com>
|
||||
|
||||
* math/tgmath.h [__HAVE_FLOAT128]: Change conditional to
|
||||
|
@ -32,11 +32,12 @@
|
||||
#include <sys/time.h>
|
||||
#include <sys/types.h>
|
||||
#include <sys/user.h>
|
||||
#include <stdint.h>
|
||||
|
||||
__BEGIN_DECLS
|
||||
|
||||
/* Type for a general-purpose register. */
|
||||
typedef unsigned long elf_greg_t;
|
||||
typedef uint64_t elf_greg_t;
|
||||
|
||||
/* And the whole bunch of them. We could have used `struct
|
||||
pt_regs' directly in the typedef, but tradition says that
|
||||
|
Loading…
Reference in New Issue
Block a user