From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 7847) id A4A483858418; Fri, 1 Apr 2022 20:06:24 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org A4A483858418 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Raoni Fassina Firmino To: glibc-cvs@sourceware.org Subject: [glibc/ibm/2.32/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/ibm/2.32/master X-Git-Oldrev: f82385fcce8f07d5121f6914ad300098df8948f8 X-Git-Newrev: 6479c904df3725b0a55566ae733c59107cee4737 Message-Id: <20220401200624.A4A483858418@sourceware.org> Date: Fri, 1 Apr 2022 20:06:24 +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: Fri, 01 Apr 2022 20:06:24 -0000 https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=6479c904df3725b0a55566ae733c59107cee4737 commit 6479c904df3725b0a55566ae733c59107cee4737 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)