ObjFW  Diff

Differences From Artifact [5551b3027e]:

To Artifact [b47c784fc5]:


776
777
778
779
780
781
782

783
784
785
786
787
788
789
790

	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;







>
|







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

	class->methodList = methodList;

	objc_updateDTable(class);
}

Method
#if defined(__clang__) && __has_attribute(__optnone__) && \
    __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;