Hi Juhani,
On Sat 15 Aug 2009 13:54, Juhani Viheräkoski writes:
> [simplex] now seems to run forever when compiled but works with the
> interpreter. It used to work when I last tried, that was maybe a week
> ago.
This was fixed in 7f7b85cbf68a8b83e1ad7bc78379cf2764fc9a1b. Thanks for
the report!
Hi,
This testcase now seems to run forever when compiled but works with the
interpreter. It used to work when I last tried, that was maybe a week ago.
--
Juhani(define (run-bench name count ok? run)
(let loop ((i count) (result '(undefined)))
(if (< 0 i)
(loop (- i 1) (run))