author | Camm Maguire <camm@debian.org> | 2013年09月27日 12:57:43 -0400 |
---|---|---|
committer | Camm Maguire <camm@debian.org> | 2013年09月27日 12:57:43 -0400 |
commit | 56d3596db8b24418c52e7d9cd2df36e55cefc4ca (patch) | |
tree | c6cc064283329efa9314aae644e2ad989ee11341 | |
parent | c94a1628b7790fbae49ec89f097ab7891e97ecf6 (diff) | |
download | gcl-gmp_random_numbers.tar.gz |
-rwxr-xr-x | gcl/o/gbc.c | 5 |
diff --git a/gcl/o/gbc.c b/gcl/o/gbc.c index e754bea8b..f6a83aef3 100755 --- a/gcl/o/gbc.c +++ b/gcl/o/gbc.c @@ -1497,8 +1497,13 @@ FFN(siLheap_report)(void) { vs_push(make_fixnum(CSTACK_ALIGNMENT)); vs_push(make_fixnum(abs(cs_limit-cs_org)));/*CSSIZE*/ #if defined(IM_FIX_BASE) && defined(IM_FIX_LIM) +#ifdef LOW_IM_FIX + vs_push(make_fixnum(-LOW_IM_FIX)); + vs_push(make_fixnum(1UL<<LOW_SHFT)); +#else vs_push(make_fixnum(IM_FIX_BASE)); vs_push(make_fixnum(IM_FIX_LIM)); +#endif #else vs_push(make_fixnum(0)); vs_push(make_fixnum(0)); |