about summary refs log tree commit diff
path: root/sysdeps
diff options
context:
space:
mode:
authorSiddhesh Poyarekar <siddhesh@sourceware.org>2017-08-09 12:57:17 +0530
committerSiddhesh Poyarekar <siddhesh@sourceware.org>2017-08-09 12:57:59 +0530
commit0e02b5107e17830d19e83cb2208103f79666af31 (patch)
treec0620f0953f160613b7bbbcea58e1d1a21b57c67 /sysdeps
parent36ada5f681d86d4abe7b3b47d653d69e5ab2a6fd (diff)
downloadglibc-0e02b5107e17830d19e83cb2208103f79666af31.tar.gz
glibc-0e02b5107e17830d19e83cb2208103f79666af31.tar.xz
glibc-0e02b5107e17830d19e83cb2208103f79666af31.zip
memcpy_falkor: Fix code style in comments
Diffstat (limited to 'sysdeps')
-rw-r--r--sysdeps/aarch64/multiarch/memcpy_falkor.S11
1 files changed, 4 insertions, 7 deletions
diff --git a/sysdeps/aarch64/multiarch/memcpy_falkor.S b/sysdeps/aarch64/multiarch/memcpy_falkor.S
index 3708281147..dea4f225ee 100644
--- a/sysdeps/aarch64/multiarch/memcpy_falkor.S
+++ b/sysdeps/aarch64/multiarch/memcpy_falkor.S
@@ -20,10 +20,8 @@
 #include <sysdep.h>
 
 /* Assumptions:
- *
- * ARMv8-a, AArch64, falkor, unaligned accesses.
- *
- */
+
+   ARMv8-a, AArch64, falkor, unaligned accesses.  */
 
 #define dstin	x0
 #define src	x1
@@ -53,14 +51,13 @@
    conditionals, since the former would unnecessarily break across multiple
    issue groups.  The medium copy group has been enlarged to 128 bytes since
    bumping up the small copies up to 32 bytes allows us to do that without
-   cost and also allows us the reduce the size of the prep code before loop64.
+   cost and also allows us to reduce the size of the prep code before loop64.
 
    All copies are done only via two registers r6 and r7.  This is to ensure
    that all loads hit a single hardware prefetcher which can get correctly
    trained to prefetch a single stream.
 
-   The non-temporal stores help optimize cache utilization.
-*/
+   The non-temporal stores help optimize cache utilization.  */
 
 #if IS_IN (libc)
 ENTRY_ALIGN (__memcpy_falkor, 6)