* mips-tfile.c (PAGE_SIZE): Increase page size to 32K.
authorRoger Sayle <roger@eyesopen.com>
Thu, 29 May 2003 21:36:52 +0000 (21:36 +0000)
committerRoger Sayle <sayle@gcc.gnu.org>
Thu, 29 May 2003 21:36:52 +0000 (21:36 +0000)
From-SVN: r67232

gcc/ChangeLog
gcc/mips-tfile.c

index 3c6b7a02ac243e7306c9c556119959be71061bb8..7cee7ea35a1e80e4cf31cdeb487ae8cf0d7cc1b5 100644 (file)
@@ -1,3 +1,7 @@
+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>
 
index d5c378f2e053148588bebee220edb27b66db5c31..c7b7840fa677252dd358f5b62eb5521f49208d22 100644 (file)
@@ -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)