diff options
| author | tv <tv@NetBSD.org> | 2001-04-23 11:57:48 +0000 |
|---|---|---|
| committer | tv <tv@NetBSD.org> | 2001-04-23 11:57:48 +0000 |
| commit | f54fbfcb7509bdf24aaa2b7113d91eb4bfe0fb17 (patch) | |
| tree | c599acdd7b265e6fe82d2b45a658f0b64a9b2bf2 /gnu/dist/toolchain/libobjc | |
| parent | 1220abdf9e6fa1477d366149d3b1a7df6c184a3a (diff) | |
Import gcc 2.95.3.
Diffstat (limited to 'gnu/dist/toolchain/libobjc')
| -rw-r--r-- | gnu/dist/toolchain/libobjc/ChangeLog | 14 | ||||
| -rw-r--r-- | gnu/dist/toolchain/libobjc/objc/Protocol.h | 2 | ||||
| -rw-r--r-- | gnu/dist/toolchain/libobjc/objc/objc-list.h | 2 | ||||
| -rw-r--r-- | gnu/dist/toolchain/libobjc/sendmsg.c | 6 |
4 files changed, 18 insertions, 6 deletions
diff --git a/gnu/dist/toolchain/libobjc/ChangeLog b/gnu/dist/toolchain/libobjc/ChangeLog index 155c8f505fb..7b7e7da7830 100644 --- a/gnu/dist/toolchain/libobjc/ChangeLog +++ b/gnu/dist/toolchain/libobjc/ChangeLog @@ -1,3 +1,17 @@ +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 + comments. + Sun Oct 24 23:54:10 PDT 1999 Jeff Law (law@cygnus.com) * gcc-2.95.2 Released. diff --git a/gnu/dist/toolchain/libobjc/objc/Protocol.h b/gnu/dist/toolchain/libobjc/objc/Protocol.h index c7464cf17a9..f54b7cd2393 100644 --- a/gnu/dist/toolchain/libobjc/objc/Protocol.h +++ b/gnu/dist/toolchain/libobjc/objc/Protocol.h @@ -55,4 +55,4 @@ Boston, MA 02111-1307, USA. */ -#endif __Protocol_INCLUDE_GNU +#endif /* not __Protocol_INCLUDE_GNU */ diff --git a/gnu/dist/toolchain/libobjc/objc/objc-list.h b/gnu/dist/toolchain/libobjc/objc/objc-list.h index 19760906238..de083a5861e 100644 --- a/gnu/dist/toolchain/libobjc/objc/objc-list.h +++ b/gnu/dist/toolchain/libobjc/objc/objc-list.h @@ -144,4 +144,4 @@ list_free(struct objc_list* list) objc_free(list); } } -#endif __GNU_OBJC_LIST_H +#endif /* not __GNU_OBJC_LIST_H */ diff --git a/gnu/dist/toolchain/libobjc/sendmsg.c b/gnu/dist/toolchain/libobjc/sendmsg.c index 62c8f2850e3..a4aa4709c7c 100644 --- a/gnu/dist/toolchain/libobjc/sendmsg.c +++ b/gnu/dist/toolchain/libobjc/sendmsg.c @@ -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)); |
