]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
x86-64: Fix ifdef indentation in strlen-evex.S
authorSunil K Pandey <skpgkp2@gmail.com>
Thu, 1 Apr 2021 22:47:04 +0000 (15:47 -0700)
committerH.J. Lu <hjl.tools@gmail.com>
Thu, 1 Apr 2021 23:13:33 +0000 (16:13 -0700)
Fix some indentations of ifdef in file strlen-evex.S which are off by 1
and confusing to read.

sysdeps/x86_64/multiarch/strlen-evex.S

index cd022509cb175ac0e24d10d2e56b53319afcd4a3..05838190788b2153247e945d211deb840d993f72 100644 (file)
@@ -276,10 +276,10 @@ L(last_2x_vec):
        .p2align 4
 L(first_vec_x0_check):
        tzcntl  %eax, %eax
-# ifdef USE_AS_WCSLEN
+#  ifdef USE_AS_WCSLEN
        /* NB: Multiply wchar_t count by 4 to get the number of bytes.  */
        sall    $2, %eax
-# endif
+#  endif
        /* Check the end of data.  */
        cmpq    %rax, %rsi
        jbe     L(max)
@@ -293,10 +293,10 @@ L(first_vec_x0_check):
        .p2align 4
 L(first_vec_x1_check):
        tzcntl  %eax, %eax
-# ifdef USE_AS_WCSLEN
+#  ifdef USE_AS_WCSLEN
        /* NB: Multiply wchar_t count by 4 to get the number of bytes.  */
        sall    $2, %eax
-# endif
+#  endif
        /* Check the end of data.  */
        cmpq    %rax, %rsi
        jbe     L(max)
@@ -311,10 +311,10 @@ L(first_vec_x1_check):
        .p2align 4
 L(first_vec_x2_check):
        tzcntl  %eax, %eax
-# ifdef USE_AS_WCSLEN
+#  ifdef USE_AS_WCSLEN
        /* NB: Multiply wchar_t count by 4 to get the number of bytes.  */
        sall    $2, %eax
-# endif
+#  endif
        /* Check the end of data.  */
        cmpq    %rax, %rsi
        jbe     L(max)
@@ -329,10 +329,10 @@ L(first_vec_x2_check):
        .p2align 4
 L(first_vec_x3_check):
        tzcntl  %eax, %eax
-# ifdef USE_AS_WCSLEN
+#  ifdef USE_AS_WCSLEN
        /* NB: Multiply wchar_t count by 4 to get the number of bytes.  */
        sall    $2, %eax
-# endif
+#  endif
        /* Check the end of data.  */
        cmpq    %rax, %rsi
        jbe     L(max)