This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH 1/9] Whitespace


2014-05-22  Charles Baylis  <charles.baylis@linaro.org>

	* config/arm/bpabi.S (__aeabi_uldivmod): Fix whitespace.
	(__aeabi_ldivmod): Fix whitespace.
---
 libgcc/config/arm/bpabi.S | 36 ++++++++++++++++++------------------
 1 file changed, 18 insertions(+), 18 deletions(-)

diff --git a/libgcc/config/arm/bpabi.S b/libgcc/config/arm/bpabi.S
index 7772301..f47d715 100644
--- a/libgcc/config/arm/bpabi.S
+++ b/libgcc/config/arm/bpabi.S
@@ -124,20 +124,20 @@ ARM_FUNC_START aeabi_ulcmp
 
 ARM_FUNC_START aeabi_ldivmod
 	cfi_start	__aeabi_ldivmod, LSYM(Lend_aeabi_ldivmod)
-	test_div_by_zero signed
+	test_div_by_zero	signed
 
-	sub sp, sp, #8
+	sub	sp, sp, #8
 #if defined(__thumb2__)
-	mov ip, sp
-	push {ip, lr}
+	mov	ip, sp
+	push	{ip, lr}
 #else
-	do_push {sp, lr}
+	do_push	{sp, lr}
 #endif
 98:	cfi_push 98b - __aeabi_ldivmod, 0xe, -0xc, 0x10
-	bl SYM(__gnu_ldivmod_helper) __PLT__
-	ldr lr, [sp, #4]
-	add sp, sp, #8
-	do_pop {r2, r3}
+	bl	SYM(__gnu_ldivmod_helper) __PLT__
+	ldr	lr, [sp, #4]
+	add	sp, sp, #8
+	do_pop	{r2, r3}
 	RET
 	cfi_end	LSYM(Lend_aeabi_ldivmod)
 	
@@ -147,20 +147,20 @@ ARM_FUNC_START aeabi_ldivmod
 
 ARM_FUNC_START aeabi_uldivmod
 	cfi_start	__aeabi_uldivmod, LSYM(Lend_aeabi_uldivmod)
-	test_div_by_zero unsigned
+	test_div_by_zero	unsigned
 
-	sub sp, sp, #8
+	sub	sp, sp, #8
 #if defined(__thumb2__)
-	mov ip, sp
-	push {ip, lr}
+	mov	ip, sp
+	push	{ip, lr}
 #else
-	do_push {sp, lr}
+	do_push	{sp, lr}
 #endif
 98:	cfi_push 98b - __aeabi_uldivmod, 0xe, -0xc, 0x10
-	bl SYM(__gnu_uldivmod_helper) __PLT__
-	ldr lr, [sp, #4]
-	add sp, sp, #8
-	do_pop {r2, r3}
+	bl	SYM(__gnu_uldivmod_helper) __PLT__
+	ldr	lr, [sp, #4]
+	add	sp, sp, #8
+	do_pop	{r2, r3}
 	RET
 	cfi_end	LSYM(Lend_aeabi_uldivmod)
 
-- 
1.9.1


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]