From 88d1bf04b6730937bcf81e4cfcbc6c348848fe70 Mon Sep 17 00:00:00 2001
From: cwang <cwang>
Date: Fri, 6 Aug 2004 21:53:37 +0000
Subject: [PATCH] put in the correct label for function object on x86 and amd64

---
 lisp/print.c | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/lisp/print.c b/lisp/print.c
index ce7c6fa38..a3e83b71f 100644
--- a/lisp/print.c
+++ b/lisp/print.c
@@ -1,4 +1,4 @@
-/* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/print.c,v 1.15 2004/07/08 04:10:09 rtoy Exp $ */
+/* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/print.c,v 1.16 2004/08/06 21:53:37 cwang Exp $ */
 
 #include <stdio.h>
 #include <string.h>
@@ -386,7 +386,13 @@ static char *symbol_slots[] = {"value: ", "unused: ",
 static char *ratio_slots[] = {"numer: ", "denom: ", NULL};
 static char *complex_slots[] = {"real: ", "imag: ", NULL};
 static char *code_slots[] = {"words: ", "entry: ", "debug: ", NULL};
+
+#if (defined(i386) || defined(__x86_64))
+static char *fn_slots[] = {"inst start: ", "next: ", "name: ", "arglist: ", "type: ", NULL};
+#else
 static char *fn_slots[] = {"self: ", "next: ", "name: ", "arglist: ", "type: ", NULL};
+#endif
+
 static char *closure_slots[] = {"fn: ", NULL};
 static char *funcallable_instance_slots[] = {"fn: ", "lexenv: ", "layout: ", NULL};
 static char *weak_pointer_slots[] = {"value: ", NULL};
-- 
GitLab