From c5255302db31e159b725416d779beb701bce85bc Mon Sep 17 00:00:00 2001 From: cuz Date: Fri, 6 Jun 2003 06:44:07 +0000 Subject: [PATCH] Increased the string pool size git-svn-id: svn://svn.cc65.org/cc65/trunk@2200 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- src/common/fragdefs.h | 8 -------- src/common/strpool.h | 2 +- 2 files changed, 1 insertion(+), 9 deletions(-) diff --git a/src/common/fragdefs.h b/src/common/fragdefs.h index 257b20fa3..2de81967a 100644 --- a/src/common/fragdefs.h +++ b/src/common/fragdefs.h @@ -47,7 +47,6 @@ /* Masks for the fragment type byte */ #define FRAG_TYPEMASK 0x38 /* Mask the type of the fragment */ #define FRAG_BYTEMASK 0x07 /* Mask for byte count */ -#define FRAG_CHECKMASK 0x40 /* Mask for check expressions */ /* Fragment types */ #define FRAG_LITERAL 0x00 /* Literal data */ @@ -66,13 +65,6 @@ #define FRAG_FILL 0x20 /* Fill bytes */ -/* Fragment checks */ -#define FRAG_CHECK 0x40 /* Check expressions exist */ - -/* Fragment check actions */ -#define FRAG_ACT_WARN 0x00U /* Print a warning */ -#define FRAG_ACT_ERROR 0x01U /* Exit with an error */ - /* End of fragdefs.h */ diff --git a/src/common/strpool.h b/src/common/strpool.h index eec1e8714..8054567a9 100644 --- a/src/common/strpool.h +++ b/src/common/strpool.h @@ -68,7 +68,7 @@ typedef struct StringPool StringPool; struct StringPool { Collection Entries; /* Entries sorted by number */ unsigned TotalSize; /* Total size of all string data */ - StringPoolEntry* Tab[211]; /* Entry hash table */ + StringPoolEntry* Tab[4177]; /* Entry hash table */ }; /* A string pool initializer. We do only initialize the first field, all