From 1c22618adc7991c7db1f73f1f6dced48a151c212 Mon Sep 17 00:00:00 2001 From: ram <ram> Date: Tue, 28 May 1991 17:54:59 +0000 Subject: [PATCH] Changed PROCESS-OPTIMIZE-DECLARATION to recognize the correct DEBUG quality, as well as the existing DEBUG-INFO quality. --- compiler/proclaim.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/proclaim.lisp b/compiler/proclaim.lisp index 91b1f26cb..f85ae0df9 100644 --- a/compiler/proclaim.lisp +++ b/compiler/proclaim.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/proclaim.lisp,v 1.17 1991/05/23 17:53:37 ram Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/proclaim.lisp,v 1.18 1991/05/28 17:54:59 ram Exp $") ;;; ;;; ********************************************************************** ;;; @@ -270,7 +270,7 @@ (safety (setf (cookie-safety res) value)) (compilation-speed (setf (cookie-cspeed res) value)) ((inhibit-warnings brevity) (setf (cookie-brevity res) value)) - (debug-info (setf (cookie-debug res) value)) + ((debug-info debug) (setf (cookie-debug res) value)) (t (compiler-warning "Unknown optimization quality ~S in ~S." (car quality) spec)))) -- GitLab