diff options
author | Ozkan Sezer <sezeroz@gmail.com> | 2009-09-03 16:46:00 +0000 |
---|---|---|
committer | H.J. Lu <hjl@gcc.gnu.org> | 2009-09-03 09:46:00 -0700 |
commit | 2e3dac6f94ec46ecfe05f34bba26f09d35b8681b (patch) | |
tree | 4f84a6682bd1aaed5aa99472dceeb58546c9315f /libiberty/configure | |
parent | 7d4507cb3051f5c256ffe567951744a53bd7f2d7 (diff) | |
download | gcc-2e3dac6f94ec46ecfe05f34bba26f09d35b8681b.zip gcc-2e3dac6f94ec46ecfe05f34bba26f09d35b8681b.tar.gz gcc-2e3dac6f94ec46ecfe05f34bba26f09d35b8681b.tar.bz2 |
re PR target/39065 (libiberty hashtab.c:hash_pointer() needs intptr_t)
2009-09-03 Ozkan Sezer <sezeroz@gmail.com>
PR target/39065
* configure.ac: Also check for intptr_t.
* config.h.in: Regenerated.
* configure: Regenerated.
* hashtab.c (hash_pointer): Cast the pointer argument to intptr_t
instead of of long.
From-SVN: r151386
Diffstat (limited to 'libiberty/configure')
-rwxr-xr-x | libiberty/configure | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libiberty/configure b/libiberty/configure index 4a04e1f..9463f8f 100755 --- a/libiberty/configure +++ b/libiberty/configure @@ -5046,6 +5046,17 @@ _ACEOF +ac_fn_c_check_type "$LINENO" "intptr_t" "ac_cv_type_intptr_t" "$ac_includes_default" +if test "x$ac_cv_type_intptr_t" = x""yes; then : + +else + +cat >>confdefs.h <<_ACEOF +#define intptr_t long +_ACEOF + +fi + ac_fn_c_check_type "$LINENO" "uintptr_t" "ac_cv_type_uintptr_t" "$ac_includes_default" if test "x$ac_cv_type_uintptr_t" = x""yes; then : |