diff options
author | nicola <nicola@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-05-26 09:13:59 +0000 |
---|---|---|
committer | nicola <nicola@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-05-26 09:13:59 +0000 |
commit | 72042d37550d7a70ad9a764d566873e6ab70e302 (patch) | |
tree | 98b7df1fbcfd07fced20774fb3154531a44d23d5 /libobjc | |
parent | 8d1c633d4df9692aedcb4baae0ec4ac10a76ee87 (diff) | |
download | gcc-72042d37550d7a70ad9a764d566873e6ab70e302.tar.gz |
In libobjc/:
2011-05-26 Nicola Pero <nicola.pero@meta-innovation.com>
* sendmsg.c (__objc_install_dtable_for_class): Use objc_getClass,
not objc_lookupClass.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@174268 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libobjc')
-rw-r--r-- | libobjc/ChangeLog | 5 | ||||
-rw-r--r-- | libobjc/sendmsg.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/libobjc/ChangeLog b/libobjc/ChangeLog index 010f3ef9ff2..38390ad03bf 100644 --- a/libobjc/ChangeLog +++ b/libobjc/ChangeLog @@ -1,3 +1,8 @@ +2011-05-26 Nicola Pero <nicola.pero@meta-innovation.com> + + * sendmsg.c (__objc_install_dtable_for_class): Use objc_getClass, + not objc_lookupClass. + 2011-05-25 Richard Frith-Macdonald <rfm@gnu.org> David Ayers <ayers@fsfe.org> diff --git a/libobjc/sendmsg.c b/libobjc/sendmsg.c index c11a791cef0..11ab887b074 100644 --- a/libobjc/sendmsg.c +++ b/libobjc/sendmsg.c @@ -1111,7 +1111,7 @@ __objc_install_dtable_for_class (Class cls) else { /* Retreive the class from the meta class. */ - Class c = objc_lookup_class (cls->name); + Class c = objc_getClass (cls->name); assert (CLS_ISMETA (cls)); assert (c); __objc_send_initialize (c); |