From 8e94a556fa1eb19c2b65678df3494cd86479a866 Mon Sep 17 00:00:00 2001
From: wlott <wlott>
Date: Tue, 24 Mar 1992 17:40:18 +0000
Subject: [PATCH] BACKEND-FEATUREP was incorrectly looking at *TARGET-BACKEND*
 instead of *BACKEND*.

---
 compiler/backend.lisp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/compiler/backend.lisp b/compiler/backend.lisp
index 36e8670ab..e2cce09c8 100644
--- a/compiler/backend.lisp
+++ b/compiler/backend.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/backend.lisp,v 1.19 1992/03/22 22:05:53 wlott Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/backend.lisp,v 1.20 1992/03/24 17:40:18 wlott Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -247,7 +247,7 @@
 
 (defun backend-featurep (feature)
   "Same as EXT:FEATUREP, except use the features found in *BACKEND*."
-  (let ((*features* (backend-features *target-backend*)))
+  (let ((*features* (backend-features *backend*)))
     (featurep feature)))
 
 (defun native-featurep (feature)
-- 
GitLab