up the table sizes; should eliminate these static tables!
authorKirk McKusick <mckusick@ucbvax.Berkeley.EDU>
Tue, 14 May 1985 06:02:29 +0000 (22:02 -0800)
committerKirk McKusick <mckusick@ucbvax.Berkeley.EDU>
Tue, 14 May 1985 06:02:29 +0000 (22:02 -0800)
SCCS-vsn: usr.bin/pascal/src/0.h 2.2

usr/src/usr.bin/pascal/src/0.h

index ee61de3..5b9e4a8 100644 (file)
@@ -1,6 +1,6 @@
 /* Copyright (c) 1979 Regents of the University of California */
 
 /* Copyright (c) 1979 Regents of the University of California */
 
-/* static char sccsid[] = "@(#)0.h 2.1 %G%"; */
+/* static char sccsid[] = "@(#)0.h 2.2 %G%"; */
 
 #define DEBUG
 #define CONSETS
 
 #define DEBUG
 #define CONSETS
@@ -79,7 +79,7 @@ bool  profflag;
  */
 
 #define        STRINC  1024            /* string space increment */
  */
 
 #define        STRINC  1024            /* string space increment */
-#define        TRINC   512             /* tree space increment */
+#define        TRINC   1024            /* tree space increment */
 #define        HASHINC 509             /* hash table size in words, each increment */
 #define        NLINC   56              /* namelist increment size in nl structs */
 
 #define        HASHINC 509             /* hash table size in words, each increment */
 #define        NLINC   56              /* namelist increment size in nl structs */
 
@@ -113,7 +113,7 @@ bool        profflag;
 #endif ADDR16
 #define        MAXHASH (4 * TABLE_MULTIPLIER)
 #define        MAXNL   (12 * TABLE_MULTIPLIER)
 #endif ADDR16
 #define        MAXHASH (4 * TABLE_MULTIPLIER)
 #define        MAXNL   (12 * TABLE_MULTIPLIER)
-#define        MAXTREE (30 * TABLE_MULTIPLIER)
+#define        MAXTREE (40 * TABLE_MULTIPLIER)
 /*
  * MAXDEPTH is the depth of the parse stack.
  * STACK_MULTIPLIER is for increasing its size.
 /*
  * MAXDEPTH is the depth of the parse stack.
  * STACK_MULTIPLIER is for increasing its size.