I'd like some help in understanding and fixing an SBCL compiler note that says:
; in: DEFUN PRINT-SEARCH-PROGRESS-GRAPH
; (- (1+ WOULDWORK-PKG::*N*)
; (LENGTH WOULDWORK-PKG::*L*))
;
; note: doing signed word to integer coercion (cost 20), for:
; the first result of inline (signed-byte 64) arithmetic
Some possibly relevant background info:
(optimize (debug 3))
(defparameter *N* 0)
(declaim (fixnum *N*))
(defparameter *L* nil)
(declaim (list *L*))
(type-of *N*) => BIT