Nikodemus Siivola wrote:
> Josip Gracin wrote:
>> Hello!
>>
>> I couldn't isolate the bug, but it seems that using
>>
>> (proclaim '(optimize (space 0) (debug 3)))
>>
>> causes "Unhandled memory faults at 0x5B". I suspect the problem is in
>> (space 0) because in various other combinations of optimizations without
>> (space 0), everything works fine.
>
> Many thanks for the report! This seems to be an SBCL compiler bug.
>
> The reduced test-case is:
>
> (eval '(locally (declare (optimize (debug 2) (space 0)))
> (let ((fun (lambda (body)
> (append
> (first body)
> nil))))
> (funcall fun
> '((foo (bar)))))))
This bug has been papered over in SBCL 1.0.7.31.
Cheersm
-- Nikodemus
|