X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=BUGS;h=93d9f256e045f70d8561309945b617b50df90353;hb=50f728671defadb8f7b1e8691c984cb0e6aba17c;hp=e1a60e312828372c1a7a303a3f852293f4c5dd56;hpb=2db3b6b4cb740d5b6512459c223859f747807b09;p=sbcl.git diff --git a/BUGS b/BUGS index e1a60e3..93d9f25 100644 --- a/BUGS +++ b/BUGS @@ -1169,17 +1169,6 @@ WORKAROUND: 229: (subtypep 'function '(function)) => nil, t. -231: "SETQ does not correctly check the type of a variable being set" - b. - (defun foo (x z) - (declare (type integer x)) - (locally (declare (type (real 1) x)) - (setq x z)) - (list x z)) - (foo 0 0) => (0 0). - - (fixed in 0.7.12.8) - 233: bugs in constraint propagation a. (defun foo (x) @@ -1282,6 +1271,14 @@ WORKAROUND: So it's somehow checking the uninterned old accessor name instead of the new requested accessor name, which seems broken to me (WHN). +242: "WRITE-SEQUENCE suboptimality" + (observed from clx performance) + In sbcl-0.7.13, WRITE-SEQUENCE of a sequence of type + (SIMPLE-ARRAY (UNSIGNED-BYTE 8) (*)) on a stream with element-type + (UNSIGNED-BYTE 8) will write to the stream one byte at a time, + rather than writing the sequence in one go, leading to severe + performance degradation. + DEFUNCT CATEGORIES OF BUGS IR1-#: These labels were used for bugs related to the old IR1 interpreter.