diff options
author | Nicola Pero <nicola.pero@meta-innovation.com> | 2010-12-19 01:29:09 +0000 |
---|---|---|
committer | Nicola Pero <nicola@gcc.gnu.org> | 2010-12-19 01:29:09 +0000 |
commit | 5ec582f9383cbdc56e12a9826839f1874fc34d6f (patch) | |
tree | 462247c43c060a7636dfaee091ca5f760c1a6231 /libobjc/objc/message.h | |
parent | 805a07f15ebd51826f22cc41c6e98f1bc72e8774 (diff) | |
download | gcc-5ec582f9383cbdc56e12a9826839f1874fc34d6f.zip gcc-5ec582f9383cbdc56e12a9826839f1874fc34d6f.tar.gz gcc-5ec582f9383cbdc56e12a9826839f1874fc34d6f.tar.bz2 |
In gcc/testsuite/: 2010-12-19 Nicola Pero <nicola.pero@meta-innovation.com>
In gcc/testsuite/:
2010-12-19 Nicola Pero <nicola.pero@meta-innovation.com>
* objc.dg/gnu-api-2-resolve-method.m: Include objc/message.h.
* obj-c++.dg/gnu-api-2-resolve-method.m: Include objc/message.h.
In libobjc/:
2010-12-19 Nicola Pero <nicola.pero@meta-innovation.com>
* Makefile.in (OBJC_DEPRECATED_H): Added objc_msg_sendv.h.
* objc/deprecated/objc_msg_sendv.h: New.
* objc/message.h: Do not define retval_t, apply_t, arglist,
arglist_t, objc_msg_sendv, now in
objc/deprecated/objc_msg_sendv.h.
* objc/objc.h: Do not include message.h; include
objc/deprecated/objc_msg_sendv.h instead. Tidied up comments.
* sendmsg.c: Include objc/message.h.
* thr.c: Include objc/message.h.
From-SVN: r168042
Diffstat (limited to 'libobjc/objc/message.h')
-rw-r--r-- | libobjc/objc/message.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/libobjc/objc/message.h b/libobjc/objc/message.h index 66f0160..9d5e6d8 100644 --- a/libobjc/objc/message.h +++ b/libobjc/objc/message.h @@ -137,20 +137,6 @@ objc_EXPORT IMP objc_msg_lookup_super (struct objc_super *super, SEL sel); objc_EXPORT IMP (*__objc_msg_forward)(SEL); objc_EXPORT IMP (*__objc_msg_forward2)(id, SEL); - -/* The following types and functions are provided only for - backwards-compatibility and should not be used in new code. They - were deprecated in GCC 4.6 and will be removed in the next - release. */ -typedef void* retval_t; /* return value */ -typedef void(*apply_t)(void); /* function pointer */ -typedef union arglist { - char *arg_ptr; - char arg_regs[sizeof (char*)]; -} *arglist_t; /* argument frame */ - -objc_EXPORT retval_t objc_msg_sendv(id, SEL, arglist_t); - #ifdef __cplusplus } #endif |