From: Guillermo J. Rozas Date: Wed, 3 Oct 1990 16:49:32 +0000 (+0000) Subject: Add RC_COMP_ERROR_RESTART. X-Git-Tag: 20090517-FFI~11158 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=31120332d78e98c5f20e394a7d375e35fb669c42;p=mit-scheme.git Add RC_COMP_ERROR_RESTART. --- diff --git a/v7/src/microcode/returns.h b/v7/src/microcode/returns.h index 101150654..bcd94a3c1 100644 --- a/v7/src/microcode/returns.h +++ b/v7/src/microcode/returns.h @@ -1,8 +1,8 @@ /* -*-C-*- -$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/returns.h,v 9.37 1990/01/29 22:31:02 jinx Exp $ +$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/returns.h,v 9.38 1990/10/03 16:49:32 jinx Exp $ -Copyright (c) 1987, 1988, 1989 Massachusetts Institute of Technology +Copyright (c) 1987, 1988, 1989, 1990 Massachusetts Institute of Technology This material was developed by the Scheme project at the Massachusetts Institute of Technology, Department of Electrical Engineering and @@ -120,10 +120,11 @@ MIT in each case. */ #define RC_COMP_LINK_CACHES_RESTART 0x5B #define RC_HARDWARE_TRAP 0x5C #define RC_INTERNAL_APPLY_VAL 0x5D +#define RC_COMP_ERROR_RESTART 0x5E /* When adding return codes, add them to the table below as well! */ -#define MAX_RETURN_CODE 0x5D +#define MAX_RETURN_CODE 0x5E #define RETURN_NAME_TABLE \ { \ @@ -220,5 +221,6 @@ MIT in each case. */ /* 0x5A */ "", \ /* 0x5B */ "COMPILER_LINK_CACHES_RESTART", \ /* 0x5C */ "HARDWARE_TRAP", \ -/* 0x5D */ "INTERNAL_APPLY_VAL" \ +/* 0x5D */ "INTERNAL_APPLY_VAL", \ +/* 0x5E */ "COMPILER_ERROR_RESTARRT" \ } diff --git a/v8/src/microcode/returns.h b/v8/src/microcode/returns.h index 5e9947f92..24e700ee1 100644 --- a/v8/src/microcode/returns.h +++ b/v8/src/microcode/returns.h @@ -1,8 +1,8 @@ /* -*-C-*- -$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/microcode/returns.h,v 9.37 1990/01/29 22:31:02 jinx Exp $ +$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/microcode/returns.h,v 9.38 1990/10/03 16:49:32 jinx Exp $ -Copyright (c) 1987, 1988, 1989 Massachusetts Institute of Technology +Copyright (c) 1987, 1988, 1989, 1990 Massachusetts Institute of Technology This material was developed by the Scheme project at the Massachusetts Institute of Technology, Department of Electrical Engineering and @@ -120,10 +120,11 @@ MIT in each case. */ #define RC_COMP_LINK_CACHES_RESTART 0x5B #define RC_HARDWARE_TRAP 0x5C #define RC_INTERNAL_APPLY_VAL 0x5D +#define RC_COMP_ERROR_RESTART 0x5E /* When adding return codes, add them to the table below as well! */ -#define MAX_RETURN_CODE 0x5D +#define MAX_RETURN_CODE 0x5E #define RETURN_NAME_TABLE \ { \ @@ -220,5 +221,6 @@ MIT in each case. */ /* 0x5A */ "", \ /* 0x5B */ "COMPILER_LINK_CACHES_RESTART", \ /* 0x5C */ "HARDWARE_TRAP", \ -/* 0x5D */ "INTERNAL_APPLY_VAL" \ +/* 0x5D */ "INTERNAL_APPLY_VAL", \ +/* 0x5E */ "COMPILER_ERROR_RESTARRT" \ }