X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcode%2Ftarget-load.lisp;h=0c8e9b6784483b37cccc34a2f7bbacb404c46629;hb=a37de74b393a808825585000bb5b2b92218d46c0;hp=c2df8ae21aa3e1a348316b479fd01f934b54120e;hpb=772659782631839f87fe059a45ecb28b933e298b;p=sbcl.git diff --git a/src/code/target-load.lisp b/src/code/target-load.lisp index c2df8ae..0c8e9b6 100644 --- a/src/code/target-load.lisp +++ b/src/code/target-load.lisp @@ -246,9 +246,6 @@ ;;; all these code objects. After a purify these fixups can be ;;; dropped. In CMU CL, this policy was enabled with ;;; *ENABLE-DYNAMIC-SPACE-CODE*; in SBCL it's always used. -;;; -;;; A little analysis of the header information is used to determine -;;; if a code object is byte compiled, or native code. #!+x86 (defun load-code (box-num code-length) (declare (fixnum box-num code-length)) @@ -268,15 +265,6 @@ (setq stuff (nreverse stuff)) - ;; Check that tto is always a list for byte-compiled - ;; code. Could be used an alternate check. - (when (and (typep tto 'list) - (not (and (sb!c::debug-info-p dbi) - (not (sb!c::compiled-debug-info-p dbi))))) - ;; FIXME: What is this for? - (format t "* tto list on non-bc code: ~S~% ~S ~S~%" - stuff dbi tto)) - ;; FIXME: *LOAD-CODE-VERBOSE* should probably be #!+SB-SHOW. (when *load-code-verbose* (format t "stuff: ~S~%" stuff)