From: Guillermo J. Rozas Date: Tue, 28 Nov 1989 05:03:10 +0000 (+0000) Subject: Add a missing + sign in the computation of REGBLOCK_SIZE. X-Git-Tag: 20090517-FFI~11659 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=c0c57db17b798ed53a86674b90f2b86808d16d18;p=mit-scheme.git Add a missing + sign in the computation of REGBLOCK_SIZE. --- diff --git a/v7/src/microcode/cmpint.c b/v7/src/microcode/cmpint.c index 5d8873f28..dbf62a410 100644 --- a/v7/src/microcode/cmpint.c +++ b/v7/src/microcode/cmpint.c @@ -30,7 +30,7 @@ Technology nor of any adaptation thereof in any advertising, promotional, or sales literature without prior written consent from MIT in each case. */ -/* $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/cmpint.c,v 1.20 1989/11/27 20:25:42 jinx Exp $ +/* $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/cmpint.c,v 1.21 1989/11/28 05:03:10 jinx Exp $ * * Compiled code interface. Portable version. * This file requires a bit of assembly language from cmpaux-md.m4 @@ -2483,7 +2483,7 @@ coerce_to_compiled (procedure, arity, location) #define REGBLOCK_LENGTH \ ((COMPILER_REGBLOCK_N_FIXED * COMPILER_FIXED_SIZE) + \ - (COMPILER_REGBLOCK_N_TEMPS * COMPILER_TEMP_SIZE) \ + (COMPILER_REGBLOCK_N_TEMPS * COMPILER_TEMP_SIZE) + \ COMPILER_REGBLOCK_EXTRA_SIZE) #ifndef ASM_RESET_HOOK diff --git a/v8/src/microcode/cmpint.c b/v8/src/microcode/cmpint.c index 94b0a3fa7..3fec8ee66 100644 --- a/v8/src/microcode/cmpint.c +++ b/v8/src/microcode/cmpint.c @@ -30,7 +30,7 @@ Technology nor of any adaptation thereof in any advertising, promotional, or sales literature without prior written consent from MIT in each case. */ -/* $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/microcode/cmpint.c,v 1.20 1989/11/27 20:25:42 jinx Exp $ +/* $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/microcode/cmpint.c,v 1.21 1989/11/28 05:03:10 jinx Exp $ * * Compiled code interface. Portable version. * This file requires a bit of assembly language from cmpaux-md.m4 @@ -2483,7 +2483,7 @@ coerce_to_compiled (procedure, arity, location) #define REGBLOCK_LENGTH \ ((COMPILER_REGBLOCK_N_FIXED * COMPILER_FIXED_SIZE) + \ - (COMPILER_REGBLOCK_N_TEMPS * COMPILER_TEMP_SIZE) \ + (COMPILER_REGBLOCK_N_TEMPS * COMPILER_TEMP_SIZE) + \ COMPILER_REGBLOCK_EXTRA_SIZE) #ifndef ASM_RESET_HOOK