diff options
author | Nicola Pero <nicola.pero@meta-innovation.com> | 2010-12-19 15:13:54 +0000 |
---|---|---|
committer | Nicola Pero <nicola@gcc.gnu.org> | 2010-12-19 15:13:54 +0000 |
commit | 6e45b376c6c4086019d8a7e8eb29fc28a20e71f7 (patch) | |
tree | 289ab317f67587dd90b5d4486afe3791a6146b7d /libobjc/objc | |
parent | fea782052db609f2a1bdf35bccf7ceb74c711494 (diff) | |
download | gcc-6e45b376c6c4086019d8a7e8eb29fc28a20e71f7.zip gcc-6e45b376c6c4086019d8a7e8eb29fc28a20e71f7.tar.gz gcc-6e45b376c6c4086019d8a7e8eb29fc28a20e71f7.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-objc.m: Fixed test to test objc_lookUpClass,
not objc_lookupClass.
* obj-c++.dg/gnu-api-2-objc.mm: Same change.
In libobjc/:
2010-12-19 Nicola Pero <nicola.pero@meta-innovation.com>
* class.c (objc_lookupClass): Renamed to objc_lookUpClass.
* protocols.c: Updated all calls to objc_lookupClass to call
objc_lookUpClass instead.
* sendmsg.c (objc_lookupClass): Do not declare.
(get_imp): Update call to objc_lookupClass to call
objc_lookUpClass instead.
* objc/runtime.h (objc_lookupClass): Renamed to objc_lookUpClass.
From-SVN: r168059
Diffstat (limited to 'libobjc/objc')
-rw-r--r-- | libobjc/objc/runtime.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libobjc/objc/runtime.h b/libobjc/objc/runtime.h index b323f99..758d2d0 100644 --- a/libobjc/objc/runtime.h +++ b/libobjc/objc/runtime.h @@ -427,7 +427,7 @@ objc_EXPORT Class objc_getClass (const char *name); the runtime. Return Nil if not. This function does not call the objc_get_unknown_class_handler function if the class is not found. */ -objc_EXPORT Class objc_lookupClass (const char *name); +objc_EXPORT Class objc_lookUpClass (const char *name); /* Return the meta class associated to the class with name 'name', if it is already registered with the runtime. First, it finds the |