diff options
author | Roger Sayle <roger@eyesopen.com> | 2003-05-29 21:36:52 +0000 |
---|---|---|
committer | Roger Sayle <sayle@gcc.gnu.org> | 2003-05-29 21:36:52 +0000 |
commit | af7387cae5fd2cb77f42ea08fec9d92aa9dad72c (patch) | |
tree | 91d0e9a31c820350e9bb51895858456829b418b9 /gcc | |
parent | ac850948a6a8756bc31440e0acbcf85630989145 (diff) | |
download | gcc-af7387cae5fd2cb77f42ea08fec9d92aa9dad72c.zip gcc-af7387cae5fd2cb77f42ea08fec9d92aa9dad72c.tar.gz gcc-af7387cae5fd2cb77f42ea08fec9d92aa9dad72c.tar.bz2 |
* mips-tfile.c (PAGE_SIZE): Increase page size to 32K.
From-SVN: r67232
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/mips-tfile.c | 7 |
2 files changed, 6 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3c6b7a0..7cee7ea 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,4 +1,8 @@ 2003-05-29 Roger Sayle <roger@eyesopen.com> + + * mips-tfile.c (PAGE_SIZE): Increase page size to 32K. + +2003-05-29 Roger Sayle <roger@eyesopen.com> Kaveh Ghazi <ghazi@caip.rutgers.edu> PR bootstrap/10169 diff --git a/gcc/mips-tfile.c b/gcc/mips-tfile.c index d5c378f..c7b7840 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) |