X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=BUGS;h=82e95d265253627a199757d8e8a243e387d34759;hb=f0670f28705c01e79fb23cb2a582074d3e51ec98;hp=fe2c696be1e056011c473275076dd98f19c62994;hpb=4ea1b7a6961e6b2d336603a04e448db052993244;p=sbcl.git diff --git a/BUGS b/BUGS index fe2c696..82e95d2 100644 --- a/BUGS +++ b/BUGS @@ -525,8 +525,18 @@ Error in function C::GET-LAMBDA-TO-COMPILE: # was defined in a non-null environment. 58: - (SUBTYPEP '(AND ZILCH INTEGER) 'ZILCH) - => NIL, NIL + (SUBTYPEP '(AND ZILCH INTEGER) 'ZILCH) => NIL, NIL + Note: I looked into fixing this in 0.6.11.15, but gave up. The + problem seems to be that there are two relevant type methods for + the subtypep operation, HAIRY :COMPLEX-SUBTYPEP-ARG2 and + INTERSECTION :COMPLEX-SUBTYPEP-ARG1, and only the first is + called. This could be fixed, but type dispatch is messy and + confusing enough already, I don't want to complicate it further. + Perhaps someday we can make CLOS cross-compiled (instead of compiled + after bootstrapping) so that we don't need to have the type system + available before CLOS, and then we can rewrite the type methods to + CLOS methods, and then expressing the solutions to stuff like this + should become much more straightforward. -- WHN 2001-03-14 59: CL:*DEFAULT-PATHNAME-DEFAULTS* doesn't behave as ANSI suggests (reflecting @@ -815,6 +825,19 @@ Error in function C::GET-LAMBDA-TO-COMPILE: (I haven't tried to investigate this bug enough to guess whether there might be any user-level symptoms.) +86: + The system doesn't know how to reduce + (specifier-type '(intersection (or number vector) real)), + it just ends up as a HAIRY-TYPE. Smarter INTERSECTION2 methods for + UNION-TYPE might help. + +87: + Despite what the manual says, (DECLAIM (SPEED 0)) doesn't cause + things to be byte compiled. This seems to be true in cmucl-2.4.19, + too: (COMPILE-FILE .. :BYTE-COMPILE T) causes byte-compilation, + but ordinary COMPILE-FILE of a file containing (DECLAIM (SPEED 0)) + does not. + KNOWN BUGS RELATED TO THE IR1 INTERPRETER