X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=BUGS;h=7f62d6ce23ae7df5a428f8a25e3462e8222e3738;hb=1ab8bfcc2145a100795401de5941c373bb6318eb;hp=d503d80e25c87bdceee07ee55a9c6c031e87d4e2;hpb=a572ab7de4266dec958d50612a8376df6bb45226;p=sbcl.git diff --git a/BUGS b/BUGS index d503d80..7f62d6c 100644 --- a/BUGS +++ b/BUGS @@ -556,11 +556,6 @@ WORKAROUND: c. The cross-compiler cannot inline functions defined in a non-null lexical environment. -206: ":SB-FLUID feature broken" - (reported by Antonio Martinez-Shotton sbcl-devel 2002-10-07) - Enabling :SB-FLUID in the target-features list in sbcl-0.7.8 breaks - the build. - 207: "poorly distributed SXHASH results for compound data" SBCL's SXHASH could probably try a little harder. ANSI: "the intent is that an implementation should make a good-faith @@ -1958,3 +1953,13 @@ generally try to check returns in safe code, so we should here too.) second nested one. A trivial fix is to call CHANGE-REF-LEAF in known call for functions already inline converted there, but he is not sure if this has adverse effects elsewhere. + +427: ANY-REG not good for primitive type T + + ...which is true, of course, but the following should not complain + about it (on x86 and x86-64): + + (sb-alien:with-alien ((buf (array (sb-alien:signed 8) 16)))) + + reported by Stelian Ionescu on sbcl-devel. +