From faaba46948fb2a2f0c76f4ef57dc6d7384fd55fe Mon Sep 17 00:00:00 2001 From: andrew Date: Sat, 16 Mar 2013 04:08:01 +0000 Subject: Add END to ARM libkern assembly functions --- sys/libkern/arm/ldivmod.S | 2 ++ 1 file changed, 2 insertions(+) (limited to 'sys/libkern/arm/ldivmod.S') diff --git a/sys/libkern/arm/ldivmod.S b/sys/libkern/arm/ldivmod.S index a88db54..26a3944 100644 --- a/sys/libkern/arm/ldivmod.S +++ b/sys/libkern/arm/ldivmod.S @@ -53,6 +53,7 @@ ENTRY_NP(__aeabi_ldivmod) add sp, sp, #8 /* Move sp to the remainder value */ ldmfd sp!, {r2, r3} /* Load the remainder */ RET +END(__aeabi_ldivmod) ENTRY_NP(__aeabi_uldivmod) sub sp, sp, #8 /* Space for the remainder */ @@ -62,6 +63,7 @@ ENTRY_NP(__aeabi_uldivmod) add sp, sp, #8 /* Move sp to the remainder value */ ldmfd sp!, {r2, r3} /* Load the remainder */ RET +END(__aeabi_uldivmod) #endif -- cgit v1.1