diff --git a/compiler/ir1final.lisp b/compiler/ir1final.lisp
index 93a5d1d3fe87de5a117b22dfaf889872e88991fc..d4366bdc3ef7e3ef283291c82af12d80f999a9c6 100644
--- a/compiler/ir1final.lisp
+++ b/compiler/ir1final.lisp
@@ -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.17 1992/12/09 00:10:25 ram Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ir1final.lisp,v 1.18 1993/05/02 14:55:20 ram Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -99,7 +99,9 @@
 ;;; possible information about the actual argument types.
 ;;;
 (defun note-assumed-types (component name var)
-  (when (eq (leaf-where-from var) :assumed)
+  (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)))
     (let ((atype (info function assumed-type name)))