From patchwork Thu Apr 1 22:47:04 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sunil Pandey X-Patchwork-Id: 42833 Return-Path: X-Original-To: patchwork@sourceware.org Delivered-To: patchwork@sourceware.org Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id E58623857001; Thu, 1 Apr 2021 22:47:10 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org E58623857001 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1617317231; bh=597UQD0pyED6DIdsXuAb5BAth45WFawGRQUNUfpnodc=; h=To:Subject:Date:List-Id:List-Unsubscribe:List-Archive:List-Post: List-Help:List-Subscribe:From:Reply-To:From; b=hyWGyAsJ3aU8LWrXRFUAjn5jloPw8z77PGg2uFnOLR1qcXsl1uSc04xWRJJcWd7d1 zsB8tLhMBriAI1usOVt7B5E3ghJDYAVL/f0Zekj3m7myhFWzCrDrr7OQXteLEZEJBJ OF0pz2J2Fa/GuoBI9tK27xJ2Hk8Xspq4jb0atjsk= X-Original-To: libc-alpha@sourceware.org Delivered-To: libc-alpha@sourceware.org Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by sourceware.org (Postfix) with ESMTPS id 66309385780E for ; Thu, 1 Apr 2021 22:47:08 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 66309385780E IronPort-SDR: rvYrW+I0uqnptJL0RFViGqUzM46DNzjME/foREVN/h2sACGFoLtYf09zDmNxXEpZAiifudFlEC 7bxrsMgbHH6Q== X-IronPort-AV: E=McAfee;i="6000,8403,9941"; a="256326976" X-IronPort-AV: E=Sophos;i="5.81,296,1610438400"; d="scan'208";a="256326976" Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 01 Apr 2021 15:47:06 -0700 IronPort-SDR: bZiSc3KLNwgqE7ZFwPs4OzIrJG8iuGCTYYlKR/GNMLvibTlNo7h+uW918QQePbCamJd/9eYrVU e+JQE3aSOPQg== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.81,296,1610438400"; d="scan'208";a="394709129" Received: from scymds02.sc.intel.com ([10.82.73.244]) by orsmga002.jf.intel.com with ESMTP; 01 Apr 2021 15:47:05 -0700 Received: from gskx-1.sc.intel.com (gskx-1.sc.intel.com [172.25.149.211]) by scymds02.sc.intel.com with ESMTP id 131Ml4fD008256; Thu, 1 Apr 2021 15:47:04 -0700 To: libc-alpha@sourceware.org Subject: [PATCH] x86-64: Fix ifdef indentation in strlen-evex.S Date: Thu, 1 Apr 2021 15:47:04 -0700 Message-Id: <20210401224704.24653-1-skpgkp2@gmail.com> X-Mailer: git-send-email 2.30.2 MIME-Version: 1.0 X-Spam-Status: No, score=-7.6 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, FORGED_GMAIL_RCVD, FREEMAIL_ENVFROM_END_DIGIT, FREEMAIL_FROM, GIT_PATCH_0, HK_RANDOM_ENVFROM, HK_RANDOM_FROM, KAM_DMARC_NONE, KAM_DMARC_STATUS, NML_ADSP_CUSTOM_MED, SPF_HELO_NONE, SPF_SOFTFAIL, SPOOFED_FREEMAIL, SPOOF_GMAIL_MID, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: libc-alpha@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libc-alpha mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-Patchwork-Original-From: Sunil K Pandey via Libc-alpha From: Sunil Pandey Reply-To: Sunil K Pandey Errors-To: libc-alpha-bounces@sourceware.org Sender: "Libc-alpha" 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 | 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)