diff --git a/objc_msgSend.x86-32.S b/objc_msgSend.x86-32.S index 452cc75..8e9f8f6 100644 --- a/objc_msgSend.x86-32.S +++ b/objc_msgSend.x86-32.S @@ -15,8 +15,6 @@ 1: # classLoaded movl \sel(%esp), %ecx mov DTABLE_OFFSET(%eax), %eax # Load the dtable from the class - cmpl uninstalled_dtable, %eax # If this is not (yet) a valid dtable - je 5f # Do a slow lookup mov (%ecx), %ecx # Load the selector index diff --git a/objc_msgSend.x86-64.S b/objc_msgSend.x86-64.S index 62d78da..6d70df4 100644 --- a/objc_msgSend.x86-64.S +++ b/objc_msgSend.x86-64.S @@ -20,8 +20,6 @@ mov (\receiver), %r10 # Load the dtable from the class 1: # classLoaded mov DTABLE_OFFSET(%r10), %r10 # Load the dtable from the class - cmpq uninstalled_dtable(%rip), %r10 # If this is not (yet) a valid dtable - je 5f # Do a slow lookup push %r12 push %r13