From c929c898f57566b8c25a3e86579c99f4097abe94 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Thu, 5 May 1988 09:29:44 +0000 Subject: [PATCH] Illegal to take address of a variable that has been declared `register'. HP's compiler never complained by GCC does. --- v7/src/microcode/array.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/v7/src/microcode/array.c b/v7/src/microcode/array.c index ca1100847..d53b61b1e 100644 --- a/v7/src/microcode/array.c +++ b/v7/src/microcode/array.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/Attic/array.c,v 9.29 1988/02/14 00:41:37 pas Rel $ */ +/* $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/Attic/array.c,v 9.30 1988/05/05 09:29:44 cph Exp $ */ /* CONTAINS: */ /* Scheme_Array constructors, and selectors */ @@ -951,7 +951,8 @@ Define_Primitive(Prim_Array_Complex_Multiplication_Into_First_One, 5, "ARRAY-COM { long Length, i; SCHEME_ARRAY scheme_result_r, scheme_result_i; REAL *x_r,*x_i, *y_r,*y_i, *result_r,*result_i; - register REAL Temp, radius, infinity; + register REAL Temp, radius; + REAL infinity; int Error_Number; Primitive_5_Args(); -- 2.25.1