Upgrade obstack.temp to long, because int's may not be large enought
authorGuillermo J. Rozas <edu/mit/csail/zurich/gjr>
Tue, 4 Feb 1992 04:17:32 +0000 (04:17 +0000)
committerGuillermo J. Rozas <edu/mit/csail/zurich/gjr>
Tue, 4 Feb 1992 04:17:32 +0000 (04:17 +0000)
to hold some of the stuff stored in temp.

v7/src/microcode/obstack.h

index 74bf0e408f70a30bc0393bfd6fc22c18d767a877..28ee4881cd1fbb193dbe6e756c0fdc5d11ceed52 100644 (file)
@@ -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));