diff options
author | Nicola Pero <nicola.pero@meta-innovation.com> | 2010-10-16 00:04:37 +0000 |
---|---|---|
committer | Nicola Pero <nicola@gcc.gnu.org> | 2010-10-16 00:04:37 +0000 |
commit | 3c44c190b65c8932f02c6b416385d6f5799fa775 (patch) | |
tree | dd3f492e6cf534d537e8633fd52e692506d57595 /libobjc/ivars.c | |
parent | 8dd6939deb9283c2e86cc6e3eb7bc082b8aff4f9 (diff) | |
download | gcc-3c44c190b65c8932f02c6b416385d6f5799fa775.zip gcc-3c44c190b65c8932f02c6b416385d6f5799fa775.tar.gz gcc-3c44c190b65c8932f02c6b416385d6f5799fa775.tar.bz2 |
In libobjc/: 2010-10-16 Nicola Pero <nicola.pero@meta-innovation.com>
In libobjc/:
2010-10-16 Nicola Pero <nicola.pero@meta-innovation.com>
* objc/runtime.h (class_getIvarLayout): New.
(class_getWeakIvarLayout): New.
(class_setIvarLayout): New.
(class_setWeakIvarLayout): New.
* ivars.c (class_getIvarLayout): New.
(class_getWeakIvarLayout): New.
(class_setIvarLayout): New.
(class_setWeakIvarLayout): New.
From-SVN: r165533
Diffstat (limited to 'libobjc/ivars.c')
-rw-r--r-- | libobjc/ivars.c | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/libobjc/ivars.c b/libobjc/ivars.c index b1e261b..827243a 100644 --- a/libobjc/ivars.c +++ b/libobjc/ivars.c @@ -281,3 +281,29 @@ class_copyPropertyList (Class class_ __attribute__ ((__unused__)), return NULL; } + +const char * +class_getIvarLayout (Class class_ __attribute__ ((__unused__))) +{ + return NULL; +} + +const char * +class_getWeakIvarLayout (Class class_ __attribute__ ((__unused__))) +{ + return NULL; +} + +void +class_setIvarLayout (Class class_ __attribute__ ((__unused__)), + const char *layout __attribute__ ((__unused__))) +{ + return; +} + +void +class_setWeakIvarLayout (Class class_ __attribute__ ((__unused__)), + const char *layout __attribute__ ((__unused__))) +{ + return; +} |