From 1e7e66684981e95da3bac6b26fba678cdcba9cac Mon Sep 17 00:00:00 2001 From: ram <ram> Date: Sat, 25 May 1991 20:14:03 +0000 Subject: [PATCH] Changed small debug-info to .5 to suppress debug args and types. --- tools/comcom.lisp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/comcom.lisp b/tools/comcom.lisp index 6994c0cd9..c0395df68 100644 --- a/tools/comcom.lisp +++ b/tools/comcom.lisp @@ -21,17 +21,17 @@ :optimize '(optimize (speed 2) (space 2) (inhibit-warnings 2) (safety #+small 0 #-small 1) - (debug-info #+small 1 #-small 2)) + (debug-info #+small .5 #-small 2)) :optimize-interface '(optimize-interface (safety #+small 1 #-small 2) - (debug-info 1)) + (debug-info .5)) :context-declarations '(#+small ((:or :macro (:match "$SOURCE-TRANSFORM-" "$IR1-CONVERT-" "$PRIMITIVE-TRANSLATE-" "$PARSE-")) (declare (optimize (safety 1)))) - (:external (declare (optimize-interface (safety 2)))))) + (:external (declare (optimize-interface (safety 2) (debug-info 1)))))) (comf "target:compiler/macros" :load *load-stuff*) (comf "target:compiler/generic/vm-macs" :load *load-stuff* :proceed t) -- GitLab