Add a missing + sign in the computation of REGBLOCK_SIZE.
authorGuillermo J. Rozas <edu/mit/csail/zurich/gjr>
Tue, 28 Nov 1989 05:03:10 +0000 (05:03 +0000)
committerGuillermo J. Rozas <edu/mit/csail/zurich/gjr>
Tue, 28 Nov 1989 05:03:10 +0000 (05:03 +0000)
v7/src/microcode/cmpint.c
v8/src/microcode/cmpint.c

index 5d8873f284d563774825382dca7e2b0d32864728..dbf62a410381bff93b5a344d8e5c275fb9cf4390 100644 (file)
@@ -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
index 94b0a3fa7745f5e843bf4bbfb8793927fc82cd28..3fec8ee6608b8662f0f48871c1609d56209bfd8f 100644 (file)
@@ -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