ObjFW  Diff

Differences From Artifact [8d4b7cca0f]:

To Artifact [4cb79aa414]:


401
402
403
404
405
406
407
408

409
410
411
412
413
414
415
401
402
403
404
405
406
407

408
409
410
411
412
413
414
415







-
+








	initializeClass(class);

	objc_globalMutex_unlock();
}

static void
processLoadQueue()
processLoadQueue(void)
{
	for (size_t i = 0; i < loadQueueCount; i++) {
		setUpClass(loadQueue[i]);

		if (loadQueue[i]->info & OBJC_CLASS_INFO_SETUP) {
			callLoad(loadQueue[i]);

776
777
778
779
780
781
782




783
784
785
786
787
788
789
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793







+
+
+
+








	class->methodList = methodList;

	objc_updateDTable(class);
}

Method
#if defined(__clang__) && __clang_major__ == 3 && __clang_minor__ <= 7
/* Work around an ICE in Clang 3.7.0 on Windows/x86 */
__attribute__((__optnone__))
#endif
class_getInstanceMethod(Class class, SEL selector)
{
	Method method;
	Class superclass;

	if (class == Nil)
		return NULL;