Revert to 60-bit bignum chunks; better make test rigging
Still failing the three-chunk bignum unit tests
This commit is contained in:
parent
e9f49d06a6
commit
4e76fad655
3 changed files with 21 additions and 3 deletions
|
|
@ -15,12 +15,12 @@
|
|||
/**
|
||||
* The maximum value we will allow in an integer cell.
|
||||
*/
|
||||
#define MAX_INTEGER ((__int128_t)0x7fffffffffffffffL)
|
||||
#define MAX_INTEGER ((__int128_t)0x0fffffffffffffffL)
|
||||
/**
|
||||
* @brief Number of value bits in an integer cell
|
||||
*
|
||||
*/
|
||||
#define INTEGER_BITS 63
|
||||
#define INTEGER_BITS 60
|
||||
|
||||
bool zerop( struct cons_pointer arg );
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue