diff options
Diffstat (limited to 'py/objint_mpz.c')
-rw-r--r-- | py/objint_mpz.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/py/objint_mpz.c b/py/objint_mpz.c index 5c014ac23e..7b2bcc9c96 100644 --- a/py/objint_mpz.c +++ b/py/objint_mpz.c @@ -41,6 +41,7 @@ #if MICROPY_PY_SYS_MAXSIZE // Export value for sys.maxsize +// *FORMAT-OFF* #define DIG_MASK ((MPZ_LONG_1 << MPZ_DIG_SIZE) - 1) STATIC const mpz_dig_t maxsize_dig[] = { #define NUM_DIG 1 @@ -64,6 +65,7 @@ STATIC const mpz_dig_t maxsize_dig[] = { #endif #endif }; +// *FORMAT-ON* const mp_obj_int_t mp_maxsize_obj = { {&mp_type_int}, {.fixed_dig = 1, .len = NUM_DIG, .alloc = NUM_DIG, .dig = (mpz_dig_t*)maxsize_dig} |