test 128 bit integer support (github issue #125)

This commit is contained in:
Fabrice Bellard 2023-12-22 11:02:05 +01:00
parent 4bb8c35da7
commit 9e1ec09027

View File

@ -27,7 +27,7 @@
#include <stddef.h>
#include <stdint.h>
#if INTPTR_MAX >= INT64_MAX
#if defined(__SIZEOF_INT128__) && (INTPTR_MAX >= INT64_MAX)
#define LIMB_LOG2_BITS 6
#else
#define LIMB_LOG2_BITS 5