Commit 0fc39d8a by Joseph Myers Committed by Joseph Myers

sendmsg.c (__objc_print_dtable_stats): Don't use #ifdef inside printf.

	* sendmsg.c (__objc_print_dtable_stats): Don't use #ifdef inside
	printf.

From-SVN: r38931
parent 9a915772
2001-01-12 Joseph S. Myers <jsm28@cam.ac.uk>
* sendmsg.c (__objc_print_dtable_stats): Don't use #ifdef inside
printf.
2000-01-11 Richard Earnshaw <rearnsha@arm.com>
* encoding.c (STRUCTURE_SIZE_BOUNDARY): Redefine in a way that
......
/* GNU Objective C Runtime message lookup
Copyright (C) 1993, 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
Copyright (C) 1993, 1995, 1996, 1997, 1998,
2001 Free Software Foundation, Inc.
Contributed by Kresten Krab Thorup
This file is part of GNU CC.
......@@ -628,13 +629,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));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment