From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1039) id 5ACDA386483F; Thu, 27 Jan 2022 22:41:28 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 5ACDA386483F Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: H.J. Lu To: glibc-cvs@sourceware.org Subject: [glibc/release/2.28/master] x86-64: Fix ifdef indentation in strlen-evex.S X-Act-Checkin: glibc X-Git-Author: Sunil K Pandey X-Git-Refname: refs/heads/release/2.28/master X-Git-Oldrev: 1a66898afb258fecccd539fd41903c714212e9f3 X-Git-Newrev: 29c42b8d68d548214f5f96f5413fa9d01a46daf2 Message-Id: <20220127224128.5ACDA386483F@sourceware.org> Date: Thu, 27 Jan 2022 22:41:28 +0000 (GMT) X-BeenThere: glibc-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Glibc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Jan 2022 22:41:28 -0000 https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=29c42b8d68d548214f5f96f5413fa9d01a46daf2 commit 29c42b8d68d548214f5f96f5413fa9d01a46daf2 Author: Sunil K Pandey Date: Thu Apr 1 15:47:04 2021 -0700 x86-64: Fix ifdef indentation in strlen-evex.S Fix some indentations of ifdef in file strlen-evex.S which are off by 1 and confusing to read. (cherry picked from commit 595c22ecd8e87a27fd19270ed30fdbae9ad25426) Diff: --- sysdeps/x86_64/multiarch/strlen-evex.S | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/sysdeps/x86_64/multiarch/strlen-evex.S b/sysdeps/x86_64/multiarch/strlen-evex.S index cd022509cb..0583819078 100644 --- a/sysdeps/x86_64/multiarch/strlen-evex.S +++ b/sysdeps/x86_64/multiarch/strlen-evex.S @@ -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)