summaryrefslogtreecommitdiffstats
path: root/libobjc/ivars.c
diff options
context:
space:
mode:
authornicola <nicola@138bc75d-0d04-0410-961f-82ee72b054a4>2010-10-16 00:04:37 +0000
committernicola <nicola@138bc75d-0d04-0410-961f-82ee72b054a4>2010-10-16 00:04:37 +0000
commit68811112b70c24dc9325917eb28152ace239dde7 (patch)
treedd3f492e6cf534d537e8633fd52e692506d57595 /libobjc/ivars.c
parent6cf818de07d7948b66583b1608ea16a1f8f650b3 (diff)
downloadppe42-gcc-68811112b70c24dc9325917eb28152ace239dde7.tar.gz
ppe42-gcc-68811112b70c24dc9325917eb28152ace239dde7.zip
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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@165533 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libobjc/ivars.c')
-rw-r--r--libobjc/ivars.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/libobjc/ivars.c b/libobjc/ivars.c
index b1e261bb8cc..827243a6c71 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;
+}
OpenPOWER on IntegriCloud