Removed the DEBUG declaration.
authorovidiu <ovidiu@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 10 Sep 2001 16:22:42 +0000 (16:22 +0000)
committerovidiu <ovidiu@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 10 Sep 2001 16:22:42 +0000 (16:22 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@45510 138bc75d-0d04-0410-961f-82ee72b054a4

libobjc/gc.c

index 8ca6de8..d92c0c3 100644 (file)
@@ -324,12 +324,13 @@ __objc_generate_gc_type_description (Class class)
   if (current + 1 == type_size)
     class_structure_type = objc_realloc (class_structure_type, ++type_size);
   strcat (class_structure_type + current, "}");
-//  printf ("type description for '%s' is %s\n", class->name, class_structure_type);
+#ifdef DEBUG
+  printf ("type description for '%s' is %s\n", class->name, class_structure_type);
+#endif
   
   __objc_gc_type_description_from_type (mask, class_structure_type);
   objc_free (class_structure_type);
 
-#define DEBUG 1
 #ifdef DEBUG
   printf ("  mask for '%s', type '%s' (bits %d, mask size %d) is:",
          class_structure_type, class->name, bits_no, size);