Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (733 - 735 of 1030)

Ticket Resolution Summary Owner Reporter
#1336 fixed Wrong keyword in check-deferred-call-args() Paul Meurer
Description

In check-deferred-call-args() level-1/sysutils.lisp, the keyword :unknown-gf-keys should be :unknown-gf-keywords. The current value leads to an error in report-compile-time-argument-mismatch(), in compiler/nx-basic.lisp. A long-standing bug.

Regards, Paul Meurer

#1338 fixed Last could be faster Andrew Shalit
Description

cl:last could be faster by implementing some special cases and open coding the general case.

I looked at the sbcl source for LAST, and we may have both guessed at least
partly right.

As i understand the code, they special-case both the case where N=0 and the
one where N=1, and  a  simpler iterative loop in each of those cases, and
a more generaj iterative loop for other values of N.

In addition. a compiler-macro is defined on LAST, which may expand
into one of the simpler loops if N is constant and does not call out-of-line
code in any event .
#1340 fixed apparent bug in UPGRADED-ARRAY-ELEMENT-TYPE Gary Byers
Description

in the current trunk CCL (and likely earlier) pm x8664

? (upgraded-array-element-type '(signed-byte 60))
FIXNUM

ok. but

? (upgraded-array-element-type '(unsigned-byte 59))
(UNSIGNED-BYTE 64)

does not seem to be ok

I think that the problem is likely in the order in which CASE clauses are tested by CCL::CTYPE-SUBTYPE

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.