mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-21 20:20:24 +02:00
* module/language/cps/types.scm (div-result-range): It is possible for a max value to be less than a minimum. In this bug from zig: (define (benchmark x) (let loop ((count 0) (sum 0)) (if (= count 10) (exact->inexact (/ sum 10))) (loop (+ count 1) x))) Here the first iteration gets peeled, and thus the first "if" can't be true, because "count" is zero. However on the true branch of the if, range inference produces bogus ranges -- notably, the variable bound to 10 is inferred to have a min of 10 and a max of 0. This is fine, because it's unreachable; but that then infects the division, because the same variable bound to 10 is used there, resulting in division by zero. |
||
---|---|---|
.. | ||
ice-9 | ||
language | ||
oop | ||
rnrs | ||
scheme | ||
scripts | ||
srfi | ||
sxml | ||
system | ||
texinfo | ||
web | ||
Makefile.am | ||
rnrs.scm | ||
statprof.scm | ||
texinfo.scm |