From 99ea527e8ef2ef10408e812372c401051b423ab8 Mon Sep 17 00:00:00 2001 From: "Guillermo J. Rozas" Date: Tue, 4 Feb 1992 04:17:32 +0000 Subject: [PATCH] Upgrade obstack.temp to long, because int's may not be large enought to hold some of the stuff stored in temp. --- v7/src/microcode/obstack.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)); -- 2.25.1