From c799e812104169af2ce0d5ebc189b9972e8f1aa3 Mon Sep 17 00:00:00 2001
From: ram <ram>
Date: Wed, 1 Sep 1993 14:15:29 +0000
Subject: [PATCH] Init byte code "trace table" to NIL so we can list byte
 function objects.

---
 compiler/dump.lisp | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/compiler/dump.lisp b/compiler/dump.lisp
index c0ed521a3..562550ebe 100644
--- a/compiler/dump.lisp
+++ b/compiler/dump.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/dump.lisp,v 1.59 1993/08/27 21:13:36 wlott Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/dump.lisp,v 1.60 1993/09/01 14:15:29 ram Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -695,8 +695,9 @@
 	    (dump-push info-handle file)
 	    (push info-handle (fasl-file-debug-info file)))))
 
-      ;; No trace table in byte-compiled functions.
-      (dump-object 0 file)
+      ;; "trace table" is initialized by loader to hold a list of all byte
+      ;; functions in this code object (for debug info.)
+      (dump-object nil file)
 
       ;; Dump the constants.
       (dotimes (i (length constants))
-- 
GitLab