diff options
author | nicola <nicola@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-12-19 14:56:14 +0000 |
---|---|---|
committer | nicola <nicola@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-12-19 14:56:14 +0000 |
commit | dd8d3729f37f9751e155be7a70380c2a11163e7d (patch) | |
tree | 8fa53d86753ef1295b535577c3d3939cb3159d8d /libobjc/sendmsg.c | |
parent | b4d63733286c887df6df5606172808a71459cb2c (diff) | |
download | gcc-dd8d3729f37f9751e155be7a70380c2a11163e7d.tar.gz |
In libobjc/:
2010-12-19 Nicola Pero <nicola.pero@meta-innovation.com>
* objc/runtime.h (class_ivar_set_gcinvisible): Declare.
* sendmsg.c (_CLS_IN_CONSTRUCTION, CLS_IS_IN_CONSTRUCTION): Do not
define. Updated comments.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@168058 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libobjc/sendmsg.c')
-rw-r--r-- | libobjc/sendmsg.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/libobjc/sendmsg.c b/libobjc/sendmsg.c index e41a190eb37..5f430fd1e48 100644 --- a/libobjc/sendmsg.c +++ b/libobjc/sendmsg.c @@ -44,10 +44,6 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see #include <assert.h> /* For assert */ #include <string.h> /* For strlen */ -/* Temporarily while we include objc/objc-api.h instead of objc-private/module-abi-8.h. */ -#define _CLS_IN_CONSTRUCTION 0x10L -#define CLS_IS_IN_CONSTRUCTION(cls) __CLS_ISINFO(cls, _CLS_IN_CONSTRUCTION) - /* This is how we hack STRUCT_VALUE to be 1 or 0. */ #define gen_rtx(args...) 1 #define gen_rtx_MEM(args...) 1 @@ -331,7 +327,8 @@ class_getMethodImplementation (Class class_, SEL selector) return get_imp (class_, selector); } -/* Given a method, return its implementation. */ +/* Given a method, return its implementation. This has been replaced + by method_getImplementation() in the modern API. */ IMP method_get_imp (struct objc_method * method) { |