From: Guillermo J. Rozas Date: Tue, 4 Feb 1992 04:17:32 +0000 (+0000) Subject: Upgrade obstack.temp to long, because int's may not be large enought X-Git-Tag: 20090517-FFI~9875 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=99ea527e8ef2ef10408e812372c401051b423ab8;p=mit-scheme.git Upgrade obstack.temp to long, because int's may not be large enought to hold some of the stuff stored in temp. --- diff --git a/v7/src/microcode/obstack.h b/v7/src/microcode/obstack.h index 74bf0e408..28ee4881c 100644 --- a/v7/src/microcode/obstack.h +++ b/v7/src/microcode/obstack.h @@ -131,7 +131,7 @@ struct obstack /* control current object in current chunk */ char *object_base; /* address of object we are building */ char *next_free; /* where to add next char to current object */ char *chunk_limit; /* address of char after current chunk */ - int temp; /* Temporary for some macros. */ + long temp; /* Temporary for some macros. */ int alignment_mask; /* Mask of alignment for each object. */ /* User's fcn to allocate a chunk. */ struct _obstack_chunk * EXFUN ((*chunkfun), (long));