From 997e6d331b2682d03b7a3cadd8a531d6d51d7b19 Mon Sep 17 00:00:00 2001
From: ram <ram>
Date: Tue, 4 Aug 1992 21:34:48 +0000
Subject: [PATCH] Don't try to reconvert calls to SETF functions with inline
 expansions in RECOGNIZE-KNOWN-CALL, because it won't work.  For now, SETF
 functions are never inline expanded.

---
 compiler/ir1opt.lisp | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/compiler/ir1opt.lisp b/compiler/ir1opt.lisp
index 36a285f15..906797ec2 100644
--- a/compiler/ir1opt.lisp
+++ b/compiler/ir1opt.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/ir1opt.lisp,v 1.48 1992/07/31 17:19:38 ram Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ir1opt.lisp,v 1.49 1992/08/04 21:34:48 ram Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -767,6 +767,7 @@
       (let ((info (info function info name)))
 	(cond
 	 ((and convert-again
+	       (symbolp name)
 	       (or (info function source-transform name)
 		   (info function inline-expansion name)
 		   (and info
-- 
GitLab