changed atom_t to stix_liw_t and made related changes.

introduced #liword to the compiler
This commit is contained in:
hyunghwan.chung
2015-11-17 14:13:59 +00:00
parent 415921d4a7
commit 5cebf7e8dc
9 changed files with 295 additions and 166 deletions

View File

@ -65,7 +65,7 @@ static void fill_bigint_tables (stix_t* stix)
for (radix = 2; radix <= 36; radix++)
{
w = 0;
ub = (stix_oow_t)STIX_TYPE_MAX(atom_t) / radix - (radix - 1);
ub = (stix_oow_t)STIX_TYPE_MAX(stix_liw_t) / radix - (radix - 1);
multiplier = 1;
safe_ndigits = 0;