From 52c173bd0aa54f8c2c2634e856d07cf619303bd8 Mon Sep 17 00:00:00 2001 From: "Guillermo J. Rozas" Date: Tue, 26 Oct 1993 23:08:20 +0000 Subject: [PATCH] Fix bug introduced in the last edit, and automate the C back end edit. --- v7/src/microcode/unxutl/cf-dist.h | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/v7/src/microcode/unxutl/cf-dist.h b/v7/src/microcode/unxutl/cf-dist.h index 37ed6d354..0533b6ac8 100644 --- a/v7/src/microcode/unxutl/cf-dist.h +++ b/v7/src/microcode/unxutl/cf-dist.h @@ -1,6 +1,6 @@ /* -*-C-*- -$Id: cf-dist.h,v 1.17 1993/10/26 17:20:23 gjr Exp $ +$Id: cf-dist.h,v 1.18 1993/10/26 23:08:20 gjr Exp $ Copyright (c) 1989-1993 Massachusetts Institute of Technology @@ -32,6 +32,12 @@ Technology nor of any adaptation thereof in any advertising, promotional, or sales literature without prior written consent from MIT in each case. */ +/* Change the value of this macro to 1 to use the C back end instead of + a native back end (if one exists). +*/ + +#define C_BACK_END 0 + #define PROC_TYPE_UNKNOWN 0 #define PROC_TYPE_68000 1 #define PROC_TYPE_68020 2 @@ -47,9 +53,9 @@ MIT in each case. */ #define PROC_TYPE_POWER 12 /* IBM RS6000 and PowerPC */ #define PROC_TYPE_LIARC 13 /* Scheme compiled to C */ -/* Define this macro to use the C back end instead of a native back - end (if one exists). */ -/* #define PROC_TYPE_LIARC */ +#if (C_BACK_END) +#define PROC_TYPE PROC_TYPE_LIARC +#endif /* Define this macro to use a non-standard compiler. It must be defined before including the m/ and s/ files because -- 2.25.1