This commit was generated by cvs2svn to compensate for changes in r74485,

which included commits to RCS files with non-trunk default branches.
This commit is contained in:
David E. O'Brien 2001-03-19 20:56:11 +00:00
commit 6020fb6068
2 changed files with 11 additions and 4 deletions

View File

@ -1,3 +1,12 @@
Fri Mar 16 12:46:19 GMT 2001 Bernd Schmidt (bernds@redhat.com)
* gcc-2.95.3 Released.
2001-01-11 Joseph S. Myers <jsm28@cam.ac.uk>
* sendmsg.c (__objc_print_dtable_stats): Don't use #ifdef inside
printf.
2000-03-29 Zack Weinberg <zack@wolery.cumb.org>
* objc/Protocol.h, objc/objc-list.h: Change #endif labels to

View File

@ -613,13 +613,11 @@ __objc_print_dtable_stats()
objc_mutex_lock(__objc_runtime_mutex);
printf("memory usage: (%s)\n",
#ifdef OBJC_SPARSE2
"2-level sparse arrays"
printf("memory usage: (%s)\n", "2-level sparse arrays");
#else
"3-level sparse arrays"
printf("memory usage: (%s)\n", "3-level sparse arrays");
#endif
);
printf("arrays: %d = %ld bytes\n", narrays,
(long)narrays*sizeof(struct sarray));