summaryrefslogtreecommitdiff
path: root/libobjc
diff options
context:
space:
mode:
authornicola <nicola@138bc75d-0d04-0410-961f-82ee72b054a4>2010-12-19 18:01:47 +0000
committernicola <nicola@138bc75d-0d04-0410-961f-82ee72b054a4>2010-12-19 18:01:47 +0000
commita9a64eb78aa5f7e4792b3a5aa3a7bb9d2ca1a6ae (patch)
treec73296b04ffd4914712c8bd5da84b081b6ae2feb /libobjc
parent57a78cded172c8258b127f703895b55130196e5d (diff)
downloadgcc-a9a64eb78aa5f7e4792b3a5aa3a7bb9d2ca1a6ae.tar.gz
In libobjc/:
2010-12-19 Nicola Pero <nicola.pero@meta-innovation.com> * objc-private/runtime.h (__objc_class_links_resolved): Removed. (__objc_print_dtable_stats): Removed. (__sel_register_typed_name): Removed. * sendmsg.c (__objc_print_dtable_stats): Use 'void' as argument. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@168066 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libobjc')
-rw-r--r--libobjc/ChangeLog7
-rw-r--r--libobjc/objc-private/runtime.h6
-rw-r--r--libobjc/sendmsg.c2
3 files changed, 8 insertions, 7 deletions
diff --git a/libobjc/ChangeLog b/libobjc/ChangeLog
index 11c97ff2543..44d0ad6e961 100644
--- a/libobjc/ChangeLog
+++ b/libobjc/ChangeLog
@@ -1,5 +1,12 @@
2010-12-19 Nicola Pero <nicola.pero@meta-innovation.com>
+ * objc-private/runtime.h (__objc_class_links_resolved): Removed.
+ (__objc_print_dtable_stats): Removed.
+ (__sel_register_typed_name): Removed.
+ * sendmsg.c (__objc_print_dtable_stats): Use 'void' as argument.
+
+2010-12-19 Nicola Pero <nicola.pero@meta-innovation.com>
+
* init.c (__objc_exec_class): Call __objc_resolve_class_links (),
if appropriate, after loading the module.
diff --git a/libobjc/objc-private/runtime.h b/libobjc/objc-private/runtime.h
index 4769d0f6592..30417f186e9 100644
--- a/libobjc/objc-private/runtime.h
+++ b/libobjc/objc-private/runtime.h
@@ -66,7 +66,6 @@ extern void __objc_update_dispatch_table_for_class (Class);/* (objc-msg.c) */
extern int __objc_init_thread_system(void); /* thread.c */
extern int __objc_fini_thread_system(void); /* thread.c */
-extern void __objc_print_dtable_stats(void); /* sendmsg.c */
extern void __objc_init_class (Class class); /* init.c */
extern void class_add_method_list(Class, struct objc_method_list *);
@@ -77,9 +76,6 @@ extern struct objc_method * search_for_method_in_list(struct objc_method_list *
extern void
__objc_update_classes_with_methods (struct objc_method *method_a, struct objc_method *method_b); /* class.c */
-/* True when class links has been resolved */
-extern BOOL __objc_class_links_resolved;
-
/* Number of selectors stored in each of the selector tables */
extern unsigned int __objc_selector_max_index;
@@ -96,8 +92,6 @@ extern int __objc_runtime_threads_alive;
#endif
BOOL __objc_responds_to (id object, SEL sel); /* for internal use only! */
-SEL __sel_register_typed_name (const char*, const char*,
- struct objc_selector*, BOOL is_const);
extern void __objc_generate_gc_type_description (Class);
#ifdef __cplusplus
diff --git a/libobjc/sendmsg.c b/libobjc/sendmsg.c
index 85610f8e6e0..5192d161973 100644
--- a/libobjc/sendmsg.c
+++ b/libobjc/sendmsg.c
@@ -980,7 +980,7 @@ __objc_forward (id object, SEL sel, arglist_t args)
}
void
-__objc_print_dtable_stats ()
+__objc_print_dtable_stats (void)
{
int total = 0;