From 2d8e79301940fca28b61bc7fd9c254568cf81b3a Mon Sep 17 00:00:00 2001 From: Stephen Adams Date: Wed, 26 Jul 1995 21:20:23 +0000 Subject: [PATCH] Added RC_COMP_LINK_CACHES_CONTINUE. --- v8/src/microcode/returns.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/v8/src/microcode/returns.h b/v8/src/microcode/returns.h index f282eab21..e2f6c7ad2 100644 --- a/v8/src/microcode/returns.h +++ b/v8/src/microcode/returns.h @@ -1,6 +1,6 @@ /* -*-C-*- -$Id: returns.h,v 9.41 1993/06/24 06:20:49 gjr Exp $ +$Id: returns.h,v 9.42 1995/07/26 21:20:23 adams Exp $ Copyright (c) 1987-1993 Massachusetts Institute of Technology @@ -118,10 +118,11 @@ MIT in each case. */ #define RC_INTERNAL_APPLY_VAL 0x5D #define RC_COMP_ERROR_RESTART 0x5E #define RC_PRIMITIVE_CONTINUE 0x5F +#define RC_COMP_LINK_CACHES_CONTINUE 0x60 /* When adding return codes, add them to the table below as well! */ -#define MAX_RETURN_CODE 0x5F +#define MAX_RETURN_CODE 0x60 #define RETURN_NAME_TABLE \ { \ @@ -221,4 +222,5 @@ MIT in each case. */ /* 0x5D */ "INTERNAL_APPLY_VAL", \ /* 0x5E */ "COMPILER_ERROR_RESTARRT", \ /* 0x5F */ "PRIMITIVE_CONTINUE" \ +/* 0x60 */ "COMPILER_LINK_CACHES_CONTINUE", \ } -- 2.25.1