From df0820da970383d46a7e5fb0a04d504a8b280553 Mon Sep 17 00:00:00 2001 From: Nicola Pero Date: Tue, 21 Dec 2010 14:56:18 +0000 Subject: [PATCH] In libobjc/: 2010-12-21 Nicola Pero In libobjc/: 2010-12-21 Nicola Pero * objc-private/common.h: When DEBUG is defined, include . Updated comments. * init.c (__objc_tree_insert_class): Use %p, not %x, when printing a pointer using DEBUG_PRINTF. From-SVN: r168119 --- libobjc/ChangeLog | 7 +++++++ libobjc/init.c | 2 +- libobjc/objc-private/common.h | 7 +++++++ 3 files changed, 15 insertions(+), 1 deletion(-) diff --git a/libobjc/ChangeLog b/libobjc/ChangeLog index 83387eef679..56bfe2e9afb 100644 --- a/libobjc/ChangeLog +++ b/libobjc/ChangeLog @@ -1,5 +1,12 @@ 2010-12-21 Nicola Pero + * objc-private/common.h: When DEBUG is defined, include . + Updated comments. + * init.c (__objc_tree_insert_class): Use %p, not %x, when printing + a pointer using DEBUG_PRINTF. + +2010-12-21 Nicola Pero + PR libobjc/45953 * selector.c (__sel_register_typed_name): When registering a new selector with the same name as an existing one, reuse the existing diff --git a/libobjc/init.c b/libobjc/init.c index 0e0d372adad..3c64f5bb7ed 100644 --- a/libobjc/init.c +++ b/libobjc/init.c @@ -209,7 +209,7 @@ create_tree_of_subclasses_inherited_from (Class bottom_class, Class upper) static objc_class_tree * __objc_tree_insert_class (objc_class_tree *tree, Class class) { - DEBUG_PRINTF ("__objc_tree_insert_class: tree = %x, class = %s\n", + DEBUG_PRINTF ("__objc_tree_insert_class: tree = %p, class = %s\n", tree, class->name); if (tree == NULL) diff --git a/libobjc/objc-private/common.h b/libobjc/objc-private/common.h index cbb335b8f83..4f4ec5cd077 100644 --- a/libobjc/objc-private/common.h +++ b/libobjc/objc-private/common.h @@ -33,7 +33,14 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see being included by an external file. */ #define GNU_LIBOBJC_COMPILING_LIBOBJC_ITSELF 1 +/* When debugging libobjc, add + + #define DEBUG 1 + + at the very beginning of a file in libobjc (before including this file) to turn + on DEBUG_PRINTF(). */ #ifdef DEBUG +#include #define DEBUG_PRINTF(format, args...) printf (format, ## args) #else #define DEBUG_PRINTF(format, args...) -- 2.11.4.GIT