Skip to content
Snippets Groups Projects
Commit 79f26f03 authored by wlott's avatar wlott
Browse files

Fixed some typos.

parent fc107092
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
(ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ir1util.lisp,v 1.33 1991/03/27 17:37:18 wlott Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ir1util.lisp,v 1.34 1991/04/02 11:06:18 wlott Exp $")
;;;
;;; **********************************************************************
;;;
......@@ -603,8 +603,8 @@ inlines
;;; DELETE-REF will handle the deletion.
;;;
(defun delete-functional (fun)
(assert (and (null (leaf-refs fun)))
(not (functional-entry-function fun)))
(assert (and (null (leaf-refs fun))
(not (functional-entry-function fun))))
(etypecase fun
(optional-dispatch (delete-optional-dispatch fun))
(clambda (delete-lambda fun)))
......@@ -749,7 +749,7 @@ inlines
(clambda
(ecase (functional-kind leaf)
((nil :let :mv-let :escape :cleanup)
(asssert (not (functional-entry-function leaf))))
(assert (not (functional-entry-function leaf))))
(:external
(delete-lambda leaf))
((:deleted :optional))))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment