0.8.3.39:
[sbcl.git] / src / compiler / ir1util.lisp
index ea581fb..789d7e1 100644 (file)
        ((continuation-block cont)
         (block-home-lambda-or-null (continuation-block cont)))
        (t
-        (bug "confused about home lambda for ~S"))))
+        (bug "confused about home lambda for ~S" cont))))
 
 ;;; Return the LAMBDA that is CONT's home.
 (declaim (ftype (sfunction (continuation) clambda)
 ;;; beginning of the current value, rather than replacing it entirely.
 (defun make-lexenv (&key (default *lexenv*)
                         funs vars blocks tags
-                         type-restrictions weakend-type-restrictions
+                         type-restrictions
                         (lambda (lexenv-lambda default))
                         (cleanup (lexenv-cleanup default))
                         (policy (lexenv-policy default)))
      (frob blocks lexenv-blocks)
      (frob tags lexenv-tags)
      (frob type-restrictions lexenv-type-restrictions)
-     (frob weakend-type-restrictions lexenv-weakend-type-restrictions)
      lambda cleanup policy)))
 
 ;;; Makes a LEXENV, suitable for using in a MACROLET introduced
      nil
      nil
      (lexenv-type-restrictions lexenv) ; XXX
-     (lexenv-weakend-type-restrictions lexenv)
      nil
      nil
      (lexenv-policy lexenv))))
                (return-block (and return (node-block return))))
          (unless (leaf-ever-used clambda)
            (let ((*compiler-error-context* bind))
-             (compiler-notify "deleting unused function~:[.~;~:*~%  ~S~]"
-                              (leaf-debug-name clambda))))
+             (compiler-notify 'code-deletion-note
+                              :format-control "deleting unused function~:[.~;~:*~%  ~S~]"
+                              :format-arguments (list (leaf-debug-name clambda)))))
           (unless (block-delete-p bind-block)
             (unlink-blocks (component-head component) bind-block))
          (when (and return-block (not (block-delete-p return-block)))
                                          0)))
            (unless (return-p node)
              (let ((*compiler-error-context* node))
-               (compiler-notify "deleting unreachable code")))
+               (compiler-notify 'code-deletion-note
+                                :format-control "deleting unreachable code"
+                                :format-arguments nil)))
            (return))))))
   (values))