diff options
author | Charles Baylis <charles.baylis@linaro.org> | 2014-06-18 15:41:27 +0000 |
---|---|---|
committer | Charles Baylis <cbaylis@gcc.gnu.org> | 2014-06-18 15:41:27 +0000 |
commit | 0b227df4e508a7767a3d3e16e43642f9c7c50d94 (patch) | |
tree | 8c2b71b525c17079c87fe799fe57ad0be58929f0 /libgcc | |
parent | c9dae335f5528055a9cb459672361f0364aacdcf (diff) | |
download | gcc-0b227df4e508a7767a3d3e16e43642f9c7c50d94.zip gcc-0b227df4e508a7767a3d3e16e43642f9c7c50d94.tar.gz gcc-0b227df4e508a7767a3d3e16e43642f9c7c50d94.tar.bz2 |
bpabi.S (__aeabi_uldivmod): Perform division using call to __udivmoddi4.
2014-06-18 Charles Baylis <charles.baylis@linaro.org>
* config/arm/bpabi.S (__aeabi_uldivmod): Perform division using call
to __udivmoddi4.
From-SVN: r211792
Diffstat (limited to 'libgcc')
-rw-r--r-- | libgcc/config/arm/bpabi.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgcc/config/arm/bpabi.S b/libgcc/config/arm/bpabi.S index 67246b0..927e37f 100644 --- a/libgcc/config/arm/bpabi.S +++ b/libgcc/config/arm/bpabi.S @@ -207,7 +207,7 @@ ARM_FUNC_START aeabi_uldivmod push_for_divide __aeabi_uldivmod /* arguments in (r0:r1), (r2:r3) and *sp */ - bl SYM(__gnu_uldivmod_helper) __PLT__ + bl SYM(__udivmoddi4) __PLT__ pop_for_divide RET cfi_end LSYM(Lend_aeabi_uldivmod) |