reassoc_4.f: Use dg-additional-options.
[gcc.git] / libobjc / objects.c
index 1c69456a630dc4d3a57ca67b3806ec7697930377..fe11062835b05e928b085c7f846255d0e00b7d41 100644 (file)
@@ -66,12 +66,6 @@ class_createInstance (Class class, size_t extraBytes)
 }
 
 /* Traditional GNU Objective-C Runtime API.  */
-id
-class_create_instance (Class class)
-{
-  return class_createInstance (class, 0);
-}
-
 id
 object_copy (id object, size_t extraBytes)
 {
@@ -122,9 +116,3 @@ object_setClass (id object, Class class_)
       return old_class;
     }
 }
-
-/* Hook functions for memory allocation and disposal.  Deprecated and
-   currently unused.  */
-id (*_objc_object_alloc) (Class)   = 0;
-id (*_objc_object_dispose) (id)    = 0;
-id (*_objc_object_copy) (id)       = 0;