X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=BUGS;h=1960b902f8e8bfc3f3d0befef0dad5f2b5e9b8fe;hb=01d3afd8254db54a95552d6e4d09f54a9c970449;hp=7816958e0b60fbca9ee493a94d8ec5b867661867;hpb=170772f1eda4e7a3bf6b40b8d9b015b1f31d6d9b;p=sbcl.git diff --git a/BUGS b/BUGS index 7816958..1960b90 100644 --- a/BUGS +++ b/BUGS @@ -2074,9 +2074,6 @@ WORKAROUND: the right fix is to remove the abstraction violation in the compiler's type deriver. -392: slot-accessor for subclass misses obsoleted superclass - (fixed in sbcl-0.9.7.9) - 393: Wrong error from methodless generic function (DEFGENERIC FOO (X)) (FOO 1 2) @@ -2151,19 +2148,6 @@ WORKAROUND: For some more details see comments for (define-alien-type-method (c-string :deport-gen) ...) in host-c-call.lisp. -399: LOOP FOR ACROSS and full call to DATA-VECTOR-REF - The following is a simplified version of code that Gary King posted - to #lisp which triggers a BUG on a full call to DATA-VECTOR-REF: - - (defun foo (x) - (declare (type (or (simple-array character (6)) - (simple-array character (5))) x)) - (aref x 0)) - - The similar code: - - (defun foo (x) - (declare (type (simple-array character (5)) x)) - (aref x 0)) +400: "aggressive constant folding" + (fixed in sbcl-0.9.10.17) - does not trigger the full call.