]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
memcpy_falkor: Fix code style in comments
authorSiddhesh Poyarekar <siddhesh@sourceware.org>
Tue, 10 Oct 2017 10:14:39 +0000 (15:44 +0530)
committerSiddhesh Poyarekar <siddhesh@sourceware.org>
Tue, 10 Oct 2017 10:15:09 +0000 (15:45 +0530)
ChangeLog
sysdeps/aarch64/multiarch/memcpy_falkor.S

index 0ef88b0c875f7b858de0f683efb05a5f1919dc3d..e1e0cdd9b2a4888580fc274f447b1d2a868f4029 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2017-10-10  Siddhesh Poyarekar  <siddhesh@sourceware.org>
 
+       * sysdeps/aarch64/multiarch/memcpy_falkor.S: Fix code style in
+       comments.
+
        * manual/tunables.texi (Tunable glibc.tune.cpu): Add falkor.
        * sysdeps/aarch64/multiarch/Makefile (sysdep_routines): Add
        memcpy_falkor.
index 3708281147771f94755d39e654adf81602ff70af..dea4f225ee9a1e08c9ba657d0cdfc51178135f7b 100644 (file)
 #include <sysdep.h>
 
 /* Assumptions:
- *
- * ARMv8-a, AArch64, falkor, unaligned accesses.
- *
- */
+
+   ARMv8-a, AArch64, falkor, unaligned accesses.  */
 
 #define dstin  x0
 #define src    x1
    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)