Skip to content
Snippets Groups Projects
Commit 12f0ad71 authored by ram's avatar ram
Browse files

Changed assertion in NOTE-ASSUMED-TYPES to a normal conditional, since it isn't

really always true.
parent dfe2ad3f
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/ir1final.lisp,v 1.18 1993/05/02 14:55:20 ram Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ir1final.lisp,v 1.19 1993/08/17 16:23:35 ram Exp $")
;;;
;;; **********************************************************************
;;;
......@@ -101,9 +101,9 @@
(defun note-assumed-types (component name var)
(when (and (eq (leaf-where-from var) :assumed)
(not (and (defined-function-p var)
(eq (defined-function-inlinep var) :notinline))))
(assert (and (eq (info function where-from name) :assumed)
(eq (info function kind name) :function)))
(eq (defined-function-inlinep var) :notinline)))
(eq (info function where-from name) :assumed)
(eq (info function kind name) :function))
(let ((atype (info function assumed-type name)))
(dolist (ref (leaf-refs var))
(let ((dest (continuation-dest (node-cont ref))))
......
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