diff options
author | Ozkan Sezer <sezeroz@gmail.com> | 2009-09-04 14:33:16 +0000 |
---|---|---|
committer | H.J. Lu <hjl@gcc.gnu.org> | 2009-09-04 07:33:16 -0700 |
commit | 0e497905ceeb7bdb724aee3027e09ba32ec80e25 (patch) | |
tree | 2c388d6661dfc9985b529fd452d81632a23bad4e /libiberty/config.in | |
parent | 22fc64b4d9a300216a82f2160ffbac6fec872f16 (diff) | |
download | gcc-0e497905ceeb7bdb724aee3027e09ba32ec80e25.tar.gz |
re PR target/39065 (libiberty hashtab.c:hash_pointer() needs intptr_t)
2009-09-04 Ozkan Sezer <sezeroz@gmail.com>
PR target/39065
* configure.ac: Replace AC_CHECK_TYPE() for intptr_t and uintptr_t
with AC_TYPE_INTPTR_T and AC_TYPE_UINTPTR_T.
* config.in: Regenerated.
* configure: Regenerated.
From-SVN: r151423
Diffstat (limited to 'libiberty/config.in')
-rw-r--r-- | libiberty/config.in | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/libiberty/config.in b/libiberty/config.in index e962769e6a9..193164830cf 100644 --- a/libiberty/config.in +++ b/libiberty/config.in @@ -121,6 +121,9 @@ /* Define to 1 if you have the `insque' function. */ #undef HAVE_INSQUE +/* Define to 1 if the system has the type `intptr_t'. */ +#undef HAVE_INTPTR_T + /* Define to 1 if you have the <inttypes.h> header file. */ #undef HAVE_INTTYPES_H @@ -457,13 +460,15 @@ #undef inline #endif -/* Define to `long' if <sys/types.h> does not define. */ +/* Define to the type of a signed integer type wide enough to hold a pointer, + if such a type exists, and if the system does not define it. */ #undef intptr_t /* Define to `int' if <sys/types.h> does not define. */ #undef pid_t -/* Define to `unsigned long' if <sys/types.h> does not define. */ +/* Define to the type of an unsigned integer type wide enough to hold a + pointer, if such a type exists, and if the system does not define it. */ #undef uintptr_t /* Define as `fork' if `vfork' does not work. */ |