X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=BUGS;h=4860f0797c6b6128a7e04b32bfa1bf47c0733992;hb=e404d36bb823d93ad20ccd6c653244cf443f2633;hp=7816958e0b60fbca9ee493a94d8ec5b867661867;hpb=170772f1eda4e7a3bf6b40b8d9b015b1f31d6d9b;p=sbcl.git diff --git a/BUGS b/BUGS index 7816958..4860f07 100644 --- a/BUGS +++ b/BUGS @@ -1928,25 +1928,6 @@ WORKAROUND: #.SB-EXT:SINGLE/DOUBLE-FLOAT-POSITIVE-INFINITY. These tests have been disabled on Darwin for now. -375: MISC.555 - (compile nil '(lambda (p1) - (declare (optimize (speed 1) (safety 2) (debug 2) (space 0)) - (type keyword p1)) - (keywordp p1))) - - fails on hairy type check in IR2. - - 1. KEYWORDP is MAYBE-INLINE expanded (before TYPEP-like - transformation could eliminate it). - - 2. From the only call of KEYWORDP the type of its argument is - derived to be KEYWORD. - - 2. Type check for P1 is generated; it uses KEYWORDP to perform the - check, and so references the local function; from the KEYWORDP - argument type new CAST to KEYWORD is generated. The compiler - loops forever. - 377: Memory fault error reporting On those architectures where :C-STACK-IS-CONTROL-STACK is in *FEATURES*, we handle SIG_MEMORY_FAULT (SEGV or BUS) on an altstack, @@ -2074,9 +2055,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 +2129,5 @@ 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)) - - does not trigger the full call. +401: "optimizer runaway on bad constant type specifiers in TYPEP" + (fixed in 0.9.12.12)