diff options
author | Kyle Repinski <repinski23@gmail.com> | 2015-04-28 13:39:41 -0500 |
---|---|---|
committer | Ethan Chen <intervigil@gmail.com> | 2016-06-27 11:13:36 -0700 |
commit | 2a016b8808633cd56962d8024c51941bcd649706 (patch) | |
tree | 46d9e684c29bb034cbe4c923b714acac52b8635d /libc | |
parent | e87a5b3d6fd488965c3c8927816db70497e88e65 (diff) | |
download | bionic-2a016b8808633cd56962d8024c51941bcd649706.zip bionic-2a016b8808633cd56962d8024c51941bcd649706.tar.gz bionic-2a016b8808633cd56962d8024c51941bcd649706.tar.bz2 |
cortex-a9: Fix reference to __memcpy_base_aligned.
With a different memcpy, __memcpy_base_aligned ceased to exist.
Instead, point to the name defined by whatever includes memcpy_base.S
Change-Id: I242cf49cbada35337ba155d7f170e86a905ff55f
Diffstat (limited to 'libc')
-rw-r--r-- | libc/arch-arm/cortex-a9/bionic/memcpy_base.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/arch-arm/cortex-a9/bionic/memcpy_base.S b/libc/arch-arm/cortex-a9/bionic/memcpy_base.S index 6ab5a69..966b9b3 100644 --- a/libc/arch-arm/cortex-a9/bionic/memcpy_base.S +++ b/libc/arch-arm/cortex-a9/bionic/memcpy_base.S @@ -44,7 +44,7 @@ ENTRY_PRIVATE(MEMCPY_BASE) /* check if buffers are aligned. If so, run arm-only version */ eor r3, r0, r1 ands r3, r3, #0x3 - beq __memcpy_base_aligned + beq MEMCPY_BASE_ALIGNED /* Check the upper size limit for Neon unaligned memory access in memcpy */ cmp r2, #224 |