diff options
author | Alan Modra <amodra@gmail.com> | 2022-05-27 15:28:34 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2022-05-27 22:08:59 +0930 |
commit | 601598589589734c21bacfc00cd4aed4f3fd1a1f (patch) | |
tree | 0aa92f84b76198ccaa2ba47b2ad647b920639289 /bfd/configure.ac | |
parent | 65d13793d9ea142bc4383216e375b24cfa654751 (diff) | |
download | gdb-601598589589734c21bacfc00cd4aed4f3fd1a1f.zip gdb-601598589589734c21bacfc00cd4aed4f3fd1a1f.tar.gz gdb-601598589589734c21bacfc00cd4aed4f3fd1a1f.tar.bz2 |
Replace bfd_hostptr_t with uintptr_t
bfd_hostptr_t is defined as a type large enough to hold either a long
or a pointer. It mostly appears in the coff backend code in casts.
include/coff/internal.h struct internal_syment and union
internal_auxent have the only uses in data structures, where
comparison with include/coff/external.h and other code reveals that
the type only needs to be large enough for a 32-bit integer or a
pointer. That should mean replacing with uintptr_t is OK.
Diffstat (limited to 'bfd/configure.ac')
-rw-r--r-- | bfd/configure.ac | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/bfd/configure.ac b/bfd/configure.ac index 52e9f8f..8ad0e05 100644 --- a/bfd/configure.ac +++ b/bfd/configure.ac @@ -219,17 +219,11 @@ if test "x${ac_cv_sizeof_void_p}" = "x8"; then fi BFD_HOST_64BIT_LONG=0 -BFD_HOSTPTR_T="unsigned long" if test "x${ac_cv_sizeof_long}" = "x8"; then BFD_HOST_64BIT_LONG=1 -elif test "x${ac_cv_sizeof_long_long}" = "x8"; then - if test "x${ac_cv_sizeof_void_p}" = "x8"; then - BFD_HOSTPTR_T="unsigned long long" - fi fi AC_SUBST(BFD_HOST_64BIT_LONG) -AC_SUBST(BFD_HOSTPTR_T) BFD_CC_FOR_BUILD |