From 5d0b5799315ee17b45c00c061d7d5c11e00dc1dd Mon Sep 17 00:00:00 2001 From: David Chisnall Date: Thu, 28 Jan 2016 09:11:30 +0000 Subject: [PATCH] Fix a missing pop that had become lost in the move to use predicated instructions. --- objc_msgSend.arm.S | 1 + 1 file changed, 1 insertion(+) diff --git a/objc_msgSend.arm.S b/objc_msgSend.arm.S index f28bf7f..41b4b60 100644 --- a/objc_msgSend.arm.S +++ b/objc_msgSend.arm.S @@ -75,6 +75,7 @@ cmp ip, #0 // If the slot is nil ldrne ip, [ip, #SLOT_OFFSET] // Load the method from the slot + popne {r4-r6} // Restore the saved callee-save registers bxne ip 5: // Slow lookup