aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Baylis <charles.baylis@linaro.org>2014-06-18 15:38:48 +0000
committerCharles Baylis <cbaylis@gcc.gnu.org>2014-06-18 15:38:48 +0000
commitf21d8faab02058e9fa86b0f15153e99d123a29e3 (patch)
tree2c7067f28dce2dcd8c60f3368693de2b5ed4adb0
parent544aee0d660d2bd471cc4317939326fe14a0babe (diff)
downloadgcc-f21d8faab02058e9fa86b0f15153e99d123a29e3.zip
gcc-f21d8faab02058e9fa86b0f15153e99d123a29e3.tar.gz
gcc-f21d8faab02058e9fa86b0f15153e99d123a29e3.tar.bz2
bpabi.S (__aeabi_uldivmod): Fix whitespace.
2014-06-18 Charles Baylis <charles.baylis@linaro.org> * config/arm/bpabi.S (__aeabi_uldivmod): Fix whitespace. (__aeabi_ldivmod): Fix whitespace. From-SVN: r211789
-rw-r--r--gcc/ChangeLog5
-rw-r--r--libgcc/config/arm/bpabi.S36
2 files changed, 23 insertions, 18 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 5ac60f2..583c8cc 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2014-06-18 Charles Baylis <charles.baylis@linaro.org>
+
+ * config/arm/bpabi.S (__aeabi_uldivmod): Fix whitespace.
+ (__aeabi_ldivmod): Fix whitespace.
+
2014-06-18 Andreas Schwab <schwab@suse.de>
* doc/md.texi (Standard Names): Use @itemx for grouped items.
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)