aboutsummaryrefslogtreecommitdiff
path: root/sysdeps
diff options
context:
space:
mode:
authorSiddhesh Poyarekar <siddhesh@sourceware.org>2018-03-06 22:56:35 +0530
committerSiddhesh Poyarekar <siddhesh@sourceware.org>2018-03-06 23:01:02 +0530
commit4e54d918630ea53e29dd70d3bdffcb00d29ed3d4 (patch)
treec672122d52034c9e4b618e70de8be8c820c6ff44 /sysdeps
parent30a81dae5b752f8aa5f96e7f7c341ec57cba3585 (diff)
downloadglibc-4e54d918630ea53e29dd70d3bdffcb00d29ed3d4.zip
glibc-4e54d918630ea53e29dd70d3bdffcb00d29ed3d4.tar.gz
glibc-4e54d918630ea53e29dd70d3bdffcb00d29ed3d4.tar.bz2
aarch64: Fix branch target to loop16
I goofed up when changing the loop8 name to loop16 and missed on out the branch instance. Fixed and actually build tested this time. * sysdeps/aarch64/memcmp.S (more16): Fix branch target loop16.
Diffstat (limited to 'sysdeps')
-rw-r--r--sysdeps/aarch64/memcmp.S2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/aarch64/memcmp.S b/sysdeps/aarch64/memcmp.S
index 8325d04..743bc07 100644
--- a/sysdeps/aarch64/memcmp.S
+++ b/sysdeps/aarch64/memcmp.S
@@ -75,7 +75,7 @@ L(more16):
/* We overlap loads between 0-32 bytes at either side of SRC1 when we
try to align, so limit it only to strings larger than 128 bytes. */
cmp limit, 96
- b.ls L(loop8)
+ b.ls L(loop16)
/* Align src1 and adjust src2 with bytes not yet done. */
and tmp1, src1, 15