X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=BUGS;h=e407f40b3e7c17f1533e3f65527f2c1677b90b99;hb=d3e5c969e4b951834b2fe9ca9b799b1dab4dc8e6;hp=48ea0b3209a88b3608f9a854a5ffc1f425145cf7;hpb=6483924c30758e2393428c7fa3f63c9faf924600;p=sbcl.git diff --git a/BUGS b/BUGS index 48ea0b3..e407f40 100644 --- a/BUGS +++ b/BUGS @@ -1820,3 +1820,29 @@ WORKAROUND: WARNING: bogus form-number in form! The source file has probably been changed too much to cope with. + +415: Issues creating large arrays on x86-64/Linux and x86/Darwin + + (make-array (1- array-dimension-limit)) + + causes a GC invariant violation on x86-64/Linux, and + an unhandled SIGILL on x86/Darwin. + +416: backtrace confusion + + (defun foo (x) + (let ((v "foo")) + (flet ((bar (z) + (oops v z) + (oops z v))) + (bar x) + (bar v)))) + (foo 13) + + gives the correct error, but the backtrace shows + 1: (SB-KERNEL:FDEFINITION-OBJECT 13 NIL) + as the second frame. + + + +