aboutsummaryrefslogtreecommitdiff
path: root/libobjc/ChangeLog
diff options
context:
space:
mode:
authornicola <nicola@138bc75d-0d04-0410-961f-82ee72b054a4>2010-12-17 22:12:34 +0000
committernicola <nicola@138bc75d-0d04-0410-961f-82ee72b054a4>2010-12-17 22:12:34 +0000
commitc720b61e5385be45ad6d46c787b1d3224a3b2aec (patch)
treec8e53dd768c82abd845d6a952d17afe5922f9348 /libobjc/ChangeLog
parent26ee9e7a3d58bafa1317a9781f6a8258ca590297 (diff)
2010-12-17 Nicola Pero <nicola.pero@meta-innovation.com>
* init.c: Include objc/runtime.h and objc-private/module-abi-8.h instead of objc/objc-api.h. (init_check_module_version): Take a 'struct objc_module *' argument instead of 'Module_t'. Use 'struct objc_module *' instead of 'Module_t'. (__objc_created_classes_tree): Take a 'struct objc_module *' argument instead of 'Module_t'; use 'struct objc_symtab *' instead of 'Symtab_t'. (__objc_call_callback): Take a 'struct objc_module *' argument instead of 'Module_t'; use 'struct objc_symtab *' instead of 'Symtab_t' and 'struct objc_category *' instead of 'Category_t'. (_objc_load_callback): Take a 'struct objc_category *' argument instead of 'Category *'. (class_superclass_of_class): Use objc_getClass() instead of objc_lookup_class(). (create_tree_of_subclasses_inherited_from): Same change (also, use an explicit 'if' instead of '?'). (objc_init_statics): Same change. (objc_send_load): Same change. (__objc_init_protocol): same change. (__objc_send_message_in_list): Take a 'struct objc_method_list *' argument instead of 'MethodList_t'. Use 'struct objc_method *' instead of 'Method_t'. (__objc_send_load): Use 'struct objc_method_list *' instead of 'MethodList_t'. Use sel_registerName() instead of sel_register_name(). (__objc_exec_class): Take a 'struct objc_module *' argument instead of 'Module_t'. Use 'struct objc_symtab *' instead of 'Symtab_t'. Use objc_getClass() instead of objc_lookup_class(). Use 'struct objc_category *' instead of 'Category_t'. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@168000 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libobjc/ChangeLog')
-rw-r--r--libobjc/ChangeLog33
1 files changed, 33 insertions, 0 deletions
diff --git a/libobjc/ChangeLog b/libobjc/ChangeLog
index d081e4f1498..e3c7a6f95db 100644
--- a/libobjc/ChangeLog
+++ b/libobjc/ChangeLog
@@ -1,3 +1,36 @@
+2010-12-17 Nicola Pero <nicola.pero@meta-innovation.com>
+
+ * init.c: Include objc/runtime.h and objc-private/module-abi-8.h
+ instead of objc/objc-api.h.
+ (init_check_module_version): Take a 'struct objc_module *'
+ argument instead of 'Module_t'. Use 'struct objc_module *'
+ instead of 'Module_t'.
+ (__objc_created_classes_tree): Take a 'struct objc_module *'
+ argument instead of 'Module_t'; use 'struct objc_symtab *' instead
+ of 'Symtab_t'.
+ (__objc_call_callback): Take a 'struct objc_module *' argument
+ instead of 'Module_t'; use 'struct objc_symtab *' instead of
+ 'Symtab_t' and 'struct objc_category *' instead of 'Category_t'.
+ (_objc_load_callback): Take a 'struct objc_category *' argument
+ instead of 'Category *'.
+ (class_superclass_of_class): Use objc_getClass() instead of
+ objc_lookup_class().
+ (create_tree_of_subclasses_inherited_from): Same change (also, use
+ an explicit 'if' instead of '?').
+ (objc_init_statics): Same change.
+ (objc_send_load): Same change.
+ (__objc_init_protocol): same change.
+ (__objc_send_message_in_list): Take a 'struct objc_method_list *'
+ argument instead of 'MethodList_t'. Use 'struct objc_method *'
+ instead of 'Method_t'.
+ (__objc_send_load): Use 'struct objc_method_list *' instead of
+ 'MethodList_t'. Use sel_registerName() instead of
+ sel_register_name().
+ (__objc_exec_class): Take a 'struct objc_module *' argument
+ instead of 'Module_t'. Use 'struct objc_symtab *' instead of
+ 'Symtab_t'. Use objc_getClass() instead of objc_lookup_class().
+ Use 'struct objc_category *' instead of 'Category_t'.
+
2010-12-16 Nicola Pero <nicola.pero@meta-innovation.com>
* sendmsg.c: Include objc/runtime.h instead of objc/objc-api.h.