mirror of
https://github.com/bellard/quickjs.git
synced 2026-03-31 20:28:01 +00:00
test 128 bit integer support (github issue #125)
This commit is contained in:
parent
4bb8c35da7
commit
9e1ec09027
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 New Issue
Block a user