From: Fabrice Bellard Date: Fri, 22 Dec 2023 10:02:05 +0000 (+0100) Subject: test 128 bit integer support (github issue #125) X-Git-Url: http://git.kaiwu.me/postgresql/log/contrib/postgres_fdw/static/gitweb.js?a=commitdiff_plain;h=9e1ec09027a4caf900a5d9b52baf43a16eccad01;p=quickjs.git test 128 bit integer support (github issue #125) --- diff --git a/libbf.h b/libbf.h index 48e9d95..0457c18 100644 --- a/libbf.h +++ b/libbf.h @@ -27,7 +27,7 @@ #include #include -#if INTPTR_MAX >= INT64_MAX +#if defined(__SIZEOF_INT128__) && (INTPTR_MAX >= INT64_MAX) #define LIMB_LOG2_BITS 6 #else #define LIMB_LOG2_BITS 5