diff --git a/compiler/eval-comp.lisp b/compiler/eval-comp.lisp
index 75b07adff7626abb79c60578a23c0e106c42cbb8..a12f40fffc77cdaa68a30466aefe97904142d394 100644
--- a/compiler/eval-comp.lisp
+++ b/compiler/eval-comp.lisp
@@ -273,8 +273,13 @@
     (error "Wrong argument count, wanted ~D and got ~D."
 	   defined-args supplied-args)))
 
-(defun %throw (tag &rest args)
-  (throw tag (values-list args)))
+;;; Use (SETF SYMBOL-FUNCTION) insetad of DEFUN so that the compiler
+;;; doesn't try to compile the hidden %THROW MV-CALL in the throw below as
+;;; a local recursive call.
+;;;
+(setf (symbol-function '%throw)
+      #'(lambda (tag &rest args)
+	  (throw tag (values-list args))))
 
 (defun %more-arg (args index)
   (nth index args))