diff --git a/code/eval.lisp b/code/eval.lisp
index 26eeb06dd723aab5b76148f07e1772e898c99ec7..9815d47c4061473ae3cc7d0e9efbd4fb41c9a823 100644
--- a/code/eval.lisp
+++ b/code/eval.lisp
@@ -5,7 +5,7 @@
 ;;; Carnegie Mellon University, and has been placed in the public domain.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/eval.lisp,v 1.36 2003/03/21 23:43:08 pmai Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/eval.lisp,v 1.37 2003/03/22 01:25:43 pmai Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -251,12 +251,14 @@
 ;;; Dummy stubs for EVAL:INTERNAL-EVAL and EVAL:MAKE-INTERPRETED-FUNCTION in
 ;;; case the compiler isn't loaded yet.
 ;;;
+(declaim (notinline eval:internal-eval))
 (defun eval:internal-eval (form &optional quietly env)
   (declare (ignore quietly env))
   (error "Attempt to evaluation a complex expression:~%     ~S~@
 	  This expression must be compiled, but the compiler is not loaded."
 	 form))
 ;;;
+(declaim (notinline eval:make-interpreted-function))
 (defun eval:make-interpreted-function (x)
   (error "EVAL called on #'(lambda (x) ...) when the compiler isn't loaded:~
 	  ~%     ~S~%"