From 6d35048f0972e23ed487e1de60dc8ce5132ad341 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Thu, 24 Jan 1991 04:31:04 +0000 Subject: [PATCH] Add record type. --- v7/src/microcode/types.h | 7 ++++--- v8/src/microcode/types.h | 7 ++++--- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/v7/src/microcode/types.h b/v7/src/microcode/types.h index c0750d819..b36bdc3a0 100644 --- a/v7/src/microcode/types.h +++ b/v7/src/microcode/types.h @@ -1,8 +1,8 @@ /* -*-C-*- -$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/types.h,v 9.31 1989/09/20 23:12:21 cph Rel $ +$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/types.h,v 9.32 1991/01/24 04:31:04 cph Exp $ -Copyright (c) 1987, 1988, 1989 Massachusetts Institute of Technology +Copyright (c) 1987-91 Massachusetts Institute of Technology This material was developed by the Scheme project at the Massachusetts Institute of Technology, Department of Electrical Engineering and @@ -98,11 +98,12 @@ MIT in each case. */ #define TC_STACK_ENVIRONMENT 0x3B #define TC_COMPLEX 0x3C #define TC_COMPILED_CODE_BLOCK 0x3D +#define TC_RECORD 0x3E /* If you add a new type, don't forget to update gccode.h, gctype.c, and the type name table below. */ -#define LAST_TYPE_CODE 0X3D +#define LAST_TYPE_CODE 0x3E #define MIN_TYPE_CODE_LENGTH 6 #ifdef TYPE_CODE_LENGTH diff --git a/v8/src/microcode/types.h b/v8/src/microcode/types.h index 799613aa3..59dc90c60 100644 --- a/v8/src/microcode/types.h +++ b/v8/src/microcode/types.h @@ -1,8 +1,8 @@ /* -*-C-*- -$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/microcode/types.h,v 9.31 1989/09/20 23:12:21 cph Rel $ +$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/microcode/types.h,v 9.32 1991/01/24 04:31:04 cph Exp $ -Copyright (c) 1987, 1988, 1989 Massachusetts Institute of Technology +Copyright (c) 1987-91 Massachusetts Institute of Technology This material was developed by the Scheme project at the Massachusetts Institute of Technology, Department of Electrical Engineering and @@ -98,11 +98,12 @@ MIT in each case. */ #define TC_STACK_ENVIRONMENT 0x3B #define TC_COMPLEX 0x3C #define TC_COMPILED_CODE_BLOCK 0x3D +#define TC_RECORD 0x3E /* If you add a new type, don't forget to update gccode.h, gctype.c, and the type name table below. */ -#define LAST_TYPE_CODE 0X3D +#define LAST_TYPE_CODE 0x3E #define MIN_TYPE_CODE_LENGTH 6 #ifdef TYPE_CODE_LENGTH -- 2.25.1