diff options
author | sayle <sayle@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-05-29 21:36:52 +0000 |
---|---|---|
committer | sayle <sayle@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-05-29 21:36:52 +0000 |
commit | b2ff167832b90124100ecf1d7e058b298756ff18 (patch) | |
tree | 91d0e9a31c820350e9bb51895858456829b418b9 /gcc/mips-tfile.c | |
parent | 318040703720cd8fe2581f34d38ad0fd972e681e (diff) | |
download | gcc-b2ff167832b90124100ecf1d7e058b298756ff18.tar.gz |
* mips-tfile.c (PAGE_SIZE): Increase page size to 32K.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@67232 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/mips-tfile.c')
-rw-r--r-- | gcc/mips-tfile.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/gcc/mips-tfile.c b/gcc/mips-tfile.c index d5c378f2e05..c7b7840fa67 100644 --- a/gcc/mips-tfile.c +++ b/gcc/mips-tfile.c @@ -898,13 +898,10 @@ enum alloc_type { pages. On systems with a BSD malloc that define USE_MALLOC, the MAX_CLUSTER_PAGES should be 1 less than a power of two, since malloc adds its overhead, and rounds up to the next power of 2. Pages are - linked together via a linked list. - - If PAGE_SIZE is > 4096, the string length in the shash_t structure - can't be represented (assuming there are strings > 4096 bytes). */ + linked together via a linked list. */ #ifndef PAGE_SIZE -#define PAGE_SIZE 4096 /* size of varray pages */ +#define PAGE_SIZE 32768 /* size of varray pages */ #endif #define PAGE_USIZE ((Size_t) PAGE_SIZE) |