test 128 bit integer support (github issue #125)
This commit is contained in:
parent
4bb8c35da7
commit
9e1ec09027
1 changed files with 1 additions and 1 deletions
2
libbf.h
2
libbf.h
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue