gnustep / libobjc2

Objective-C runtime library intended for use with Clang.
http://www.gnustep.org/
MIT License
434 stars 118 forks source link

Add objc_alloc and objc_allocWithZone #169

Closed davidchisnall closed 7 months ago

davidchisnall commented 4 years ago

Clang can convert +alloc and +allocWithZone: with a nil argument calls into calls to a runtime function. This is not quite the same as class_createInstance, because it guarantees that the +initialize method has been sent and will call +alloc if the class provides an override (the overwhelming majority do not).